method
rescue_with_handler
v7.1.3.2 -
Show latest stable
- Class:
ActiveSupport::Rescuable::ClassMethods
rescue_with_handler(exception, object: self, visited_exceptions: [])public
Matches an exception to a handler based on the exception class.
If no handler matches the exception, check for a handler matching the (optional) exception.cause. If no handler matches the exception or its cause, this returns nil, so you can deal with unhandled exceptions. Be sure to re-raise unhandled exceptions if this is what you expect.
begin # ... rescue => exception rescue_with_handler(exception) || raise end
Returns the exception if it was handled and nil if it was not.