Searched refs:error_handlers (Results 1 – 8 of 8) sorted by relevance
78 :attr:`webapp2.WSGIApplication.error_handlers`. This is a dictionary that103 app.error_handlers[404] = handle_404104 app.error_handlers[500] = handle_500
157 to register error handlers as the :attr:`webapp2.WSGIApplication.error_handlers`179 app.error_handlers[404] = handle_404180 app.error_handlers[500] = handle_500
165 app.error_handlers = {}223 app.error_handlers = {502 app.error_handlers[500] = handle_exception519 app.error_handlers[500] = handle_exception
309 app.error_handlers[500] = 'resources.handlers.handle_exception'
54 debug, router, config, registry, error_handlers, app, request,
1455 error_handlers = None variable in WSGIApplication1476 self.error_handlers = {}1591 handler = self.error_handlers.get(code)1594 self.error_handlers[code] = handler = import_string(handler)
305 - Handlers registered in WSGIApplication.error_handlers can now also be a
91 app.error_handlers[404] = handle_404