method
rescue_from
v3.1.0 -
Show latest stable
- Class:
ActionDispatch::Rescue
rescue_from(exception, rescuer)protected
No documentation available.
# File actionpack/lib/action_dispatch/middleware/rescue.rb, line 21
def rescue_from(exception, rescuer)
exception = exception.class.name if exception.is_a?(Exception)
@rescuers[exception.to_s] = rescuer
end