Home
last modified time | relevance | path

Searched refs:error_handlers (Results 1 – 8 of 8) sorted by relevance

/external/chromium-trace/catapult/third_party/webapp2/docs/guide/
Dexceptions.rst78 :attr:`webapp2.WSGIApplication.error_handlers`. This is a dictionary that
103 app.error_handlers[404] = handle_404
104 app.error_handlers[500] = handle_500
Dapp.rst157 to register error handlers as the :attr:`webapp2.WSGIApplication.error_handlers`
179 app.error_handlers[404] = handle_404
180 app.error_handlers[500] = handle_500
/external/chromium-trace/catapult/third_party/webapp2/tests/
Dhandler_test.py165 app.error_handlers = {}
223 app.error_handlers = {
502 app.error_handlers[500] = handle_exception
519 app.error_handlers[500] = handle_exception
Dresponse_test.py309 app.error_handlers[500] = 'resources.handlers.handle_exception'
/external/chromium-trace/catapult/third_party/webapp2/docs/api/
Dwebapp2.rst54 debug, router, config, registry, error_handlers, app, request,
/external/chromium-trace/catapult/third_party/webapp2/
Dwebapp2.py1455 error_handlers = None variable in WSGIApplication
1476 self.error_handlers = {}
1591 handler = self.error_handlers.get(code)
1594 self.error_handlers[code] = handler = import_string(handler)
DCHANGES305 - Handlers registered in WSGIApplication.error_handlers can now also be a
/external/chromium-trace/catapult/third_party/webapp2/docs/
Dfeatures.rst91 app.error_handlers[404] = handle_404