mirror of
https://github.com/django/django.git
synced 2025-07-06 02:39:12 +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
|