method
rescue_action_without_handler
v4.0.2 -
Show latest stable
- Class:
ActionController::TestCase::RaiseActionExceptions
rescue_action_without_handler(e)protected
No documentation available.
# File actionpack/lib/action_controller/test_case.rb, line 682
def rescue_action_without_handler(e)
self.exception = e
if request.remote_addr == "0.0.0.0"
raise(e)
else
super(e)
end
end