Class | ActionDispatch::ShowExceptions |
In: |
lib/action_dispatch/middleware/show_exceptions.rb
|
Parent: | Object |
This middleware rescues any exception returned by the application and renders nice exception pages if it‘s being rescued locally.
RESCUES_TEMPLATE_PATH | = | File.join(File.dirname(__FILE__), 'templates') |
FAILSAFE_RESPONSE | = | [500, {'Content-Type' => 'text/html'}, ["<html><body><h1>500 Internal Server Error</h1>" << "If you are the administrator of this website, then please read this web " << "application's log file and/or the web server's log file to find out what " << "went wrong.</body></html>"]] |