module ActionController::Rescue

Private Instance Methods

process_action(*args) click to toggle source
Calls superclass method
# File lib/error_arranger/rescue_with_arranger.rb, line 7
def process_action(*args)
  super
rescue Exception => exception
  request.env['action_dispatch.show_detailed_exceptions'] ||= show_detailed_exceptions?
  arrange_exception!(exception) if self.respond_to?(:arrange_exception!)
  rescue_with_handler(exception) || raise(exception)
end