mirror of
https://github.com/django/django.git
synced 2024-11-28 10:48:32 +01:00
9baf692a58
Thanks Tim Graham for polishing the patch, updating the tests, and writing documentation. Thanks Carl Meyer for shepherding the DEP.
11 lines
286 B
Python
11 lines
286 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.http import HttpResponse
|
|
from django.utils.deprecation import MiddlewareMixin
|
|
|
|
|
|
class ProcessExceptionMiddleware(MiddlewareMixin):
|
|
|
|
def process_exception(self, request, exception):
|
|
return HttpResponse('Exception caught')
|