method

invoke_interceptors

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: DebugExceptions
invoke_interceptors(request, exception, wrapper) private

No documentation

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

Hide source
# File actionpack/lib/action_dispatch/middleware/debug_exceptions.rb, line 48
      def invoke_interceptors(request, exception, wrapper)
        @interceptors.each do |interceptor|
          interceptor.call(request, exception)
        rescue Exception
          log_error(request, wrapper)
        end
      end
Register or log in to add new notes.