django1/django/urls/exceptions.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
115 B
Python
Raw Normal View History

from django.http import Http404
class Resolver404(Http404):
pass
class NoReverseMatch(Exception):
pass