From a5c5e51aa9b4490ff3a47ec0b0da176cb66241c8 Mon Sep 17 00:00:00 2001 From: Daniel Hepper Date: Sun, 27 May 2018 16:08:50 +0200 Subject: [PATCH] [2.0.x] Removed docs for obsolete ExceptionMiddleware. Backport of a6fb5b1fe022c5279aa275c70b5193f2a2fac5fe from master --- docs/ref/middleware.txt | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/docs/ref/middleware.txt b/docs/ref/middleware.txt index f5ebc93decf..0cd706c6976 100644 --- a/docs/ref/middleware.txt +++ b/docs/ref/middleware.txt @@ -89,34 +89,6 @@ issued by the middleware. * Sends broken link notification emails to :setting:`MANAGERS` (see :doc:`/howto/error-reporting`). -Exception middleware --------------------- - -.. module:: django.middleware.exception - :synopsis: Middleware to return responses for exceptions. - -.. class:: ExceptionMiddleware - -Catches exceptions raised during the request/response cycle and returns the -appropriate response. - -* :class:`~django.http.Http404` is processed by - :data:`~django.conf.urls.handler404` (or a more friendly debug page if - :setting:`DEBUG=True `). -* :class:`~django.core.exceptions.PermissionDenied` is processed - by :data:`~django.conf.urls.handler403`. -* ``MultiPartParserError`` is processed by :data:`~django.conf.urls.handler400`. -* :class:`~django.core.exceptions.SuspiciousOperation` is processed by - :data:`~django.conf.urls.handler400` (or a more friendly debug page if - :setting:`DEBUG=True `). -* Any other exception is processed by :data:`~django.conf.urls.handler500` - (or a more friendly debug page if :setting:`DEBUG=True `). - -Django uses this middleware regardless of whether or not you include it in -:setting:`MIDDLEWARE`, however, you may want to subclass if your own middleware -needs to transform any of these exceptions into the appropriate responses. -:class:`~django.middleware.locale.LocaleMiddleware` does this, for example. - GZip middleware ---------------