Methods
- C
- N
- R
Class Public methods
Instance Public methods
# File actionpack/lib/action_dispatch/middleware/rescue.rb, line 9 9: def call(env) 10: @app.call(env) 11: rescue Exception => exception 12: if rescuer = @rescuers[exception.class.name] 13: env['action_dispatch.rescue.exception'] = exception 14: rescuer.call(env) 15: else 16: raise exception 17: end 18: end
Instance Protected methods