1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_controller/metal/rescue.rb

23 lines
573 B
Ruby
Raw Normal View History

2009-05-15 20:49:11 -04:00
module ActionController #:nodoc:
module Rescue
extend ActiveSupport::Concern
include ActiveSupport::Rescuable
2009-05-15 20:49:11 -04:00
def rescue_with_handler(exception)
if (exception.respond_to?(:original_exception) &&
(orig_exception = exception.original_exception) &&
handler_for_rescue(orig_exception))
exception = orig_exception
end
super(exception)
end
private
def process_action(*args)
super
rescue Exception => exception
rescue_with_handler(exception) || raise(exception)
end
2009-05-15 20:49:11 -04:00
end
end