mirror of
https://github.com/django/django.git
synced 2025-05-07 23:46:30 +00:00
12 lines
156 B
Python
12 lines
156 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.http import Http404
|
|
|
|
|
|
class Resolver404(Http404):
|
|
pass
|
|
|
|
|
|
class NoReverseMatch(Exception):
|
|
pass
|