diff options
| author | Tim Graham <timograham@gmail.com> | 2013-09-05 08:43:10 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-09-05 08:45:33 -0400 |
| commit | eacf060e01617ea5e910e8f8a5805483cd5c60b0 (patch) | |
| tree | 549968faf2a4edfb1196eba4cc87342deb07e8f6 /docs/ref/exceptions.txt | |
| parent | 7b62b80693d57f4bfd7a2f045bfd5c2f787601f8 (diff) | |
Fixed #21044 -- Documented django.core.urlresolvers.Resolver404
Thanks Keryn Knight for the suggestion.
Diffstat (limited to 'docs/ref/exceptions.txt')
| -rw-r--r-- | docs/ref/exceptions.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/ref/exceptions.txt b/docs/ref/exceptions.txt index bee8559ab0..956ee5a188 100644 --- a/docs/ref/exceptions.txt +++ b/docs/ref/exceptions.txt @@ -131,6 +131,15 @@ URL Resolver exceptions URL Resolver exceptions are defined in :mod:`django.core.urlresolvers`. +Resolver404 +-------------- +.. exception:: Resolver404 + + The :exc:`Resolver404` exception is raised by + :func:`django.core.urlresolvers.resolve()` if the path passed to + ``resolve()`` doesn't map to a view. It's a subclass of + :class:`django.http.Http404` + NoReverseMatch -------------- .. exception:: NoReverseMatch |
