Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
eacf060e
Kaydet (Commit)
eacf060e
authored
Eyl 05, 2013
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #21044 -- Documented django.core.urlresolvers.Resolver404
Thanks Keryn Knight for the suggestion.
üst
7b62b806
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
exceptions.txt
docs/ref/exceptions.txt
+9
-0
urlresolvers.txt
docs/ref/urlresolvers.txt
+3
-2
No files found.
docs/ref/exceptions.txt
Dosyayı görüntüle @
eacf060e
...
@@ -131,6 +131,15 @@ URL Resolver exceptions
...
@@ -131,6 +131,15 @@ URL Resolver exceptions
URL Resolver exceptions are defined in :mod:`django.core.urlresolvers`.
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
NoReverseMatch
--------------
--------------
.. exception:: NoReverseMatch
.. exception:: NoReverseMatch
...
...
docs/ref/urlresolvers.txt
Dosyayı görüntüle @
eacf060e
...
@@ -102,8 +102,9 @@ worry about the ``urlconf`` parameter. The function returns a
...
@@ -102,8 +102,9 @@ worry about the ``urlconf`` parameter. The function returns a
:class:`ResolverMatch` object that allows you
:class:`ResolverMatch` object that allows you
to access various meta-data about the resolved URL.
to access various meta-data about the resolved URL.
If the URL does not resolve, the function raises an
If the URL does not resolve, the function raises a
:class:`~django.http.Http404` exception.
:exc:`~django.core.urlresolvers.Resolver404` exception (a subclass of
:class:`~django.http.Http404`) .
.. class:: ResolverMatch
.. class:: ResolverMatch
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment