1
0
mirror of https://github.com/django/django.git synced 2025-05-07 23:46:30 +00:00
django/django/urls/exceptions.py
Marten Kenbeek 16411b8400 Fixed #26013 -- Moved django.core.urlresolvers to django.urls.
Thanks to Tim Graham for the review.
2015-12-31 14:21:29 -05:00

12 lines
156 B
Python

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