You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exceptions.py 115B

123456789
  1. from django.http import Http404
  2. class Resolver404(Http404):
  3. pass
  4. class NoReverseMatch(Exception):
  5. pass