exceptions.py 115 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
from django.http import Http404


class Resolver404(Http404):
    pass


class NoReverseMatch(Exception):
    pass