instance method
rescue_action_without_handler
Ruby on Rails 3.0.20
Since v2.2.3 Last seen in v4.1.16Signature
rescue_action_without_handler(e)
No documentation comment.
Parameters
-
ereq
Source
# File actionpack/lib/action_controller/test_case.rb, line 481
def rescue_action_without_handler(e)
self.exception = e
if request.remote_addr == "0.0.0.0"
raise(e)
else
super(e)
end
end
Defined in actionpack/lib/action_controller/test_case.rb line 481
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::TestCase::RaiseActionExceptions