method
invoke_interceptors
v7.1.3.2 -
Show latest stable
- Class:
ActionDispatch::DebugExceptions
invoke_interceptors(request, exception, wrapper)private
No documentation available.
# 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