Flowdock
method

find_rescue_handler

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: ActiveSupport::Rescuable::ClassMethods
find_rescue_handler(exception) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/rescuable.rb, line 113
        def find_rescue_handler(exception)
          if exception
            # Handlers are in order of declaration but the most recently declared
            # is the highest priority match, so we search for matching handlers
            # in reverse.
            _, handler = rescue_handlers.reverse_each.detect do |class_or_name, _|
              if klass = constantize_rescue_handler_class(class_or_name)
                klass === exception
              end
            end

            handler || find_rescue_handler(exception.cause)
          end
        end
Register or log in to add new notes.