Login

middleware to capture doesnot exists exception

Author:
vbachu
Posted:
July 12, 2013
Language:
Python
Version:
Not specified
Score:
0 (after 0 ratings)

middleware to capture exceptions doesnotexists,objectdoesnotexists

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
class CheckDoesNotExistsMiddleware(object):

    def process_exception(self, request, exception):
        if isinstance(exception, ObjectDoesNotExist):
            raise Http404

in settings.py 
MIDDLEWARE_CLASSES = (
    ...........
    ...........
    'gcrmserver.apps.core.middleware.CheckDoesNotExistsMiddleware',

)

More like this

  1. Form field with fixed value by roam 3 days, 20 hours ago
  2. New Snippet! by Antoliny0919 1 week, 3 days ago
  3. Add Toggle Switch Widget to Django Forms by OgliariNatan 2 months, 4 weeks ago
  4. get_object_or_none by azwdevops 6 months, 3 weeks ago
  5. Mask sensitive data from logger by agusmakmun 8 months, 2 weeks ago

Comments

Please login first before commenting.