method
causes_for
v6.1.7.7 -
Show latest stable
- Class:
ActionDispatch::ExceptionWrapper
causes_for(exception)private
No documentation available.
# File actionpack/lib/action_dispatch/middleware/exception_wrapper.rb, line 149
def causes_for(exception)
return enum_for(__method__, exception) unless block_given?
yield exception while exception = exception.cause
end