method
actions
v6.0.0 -
Show latest stable
- Class:
ActiveSupport::ActionableError
actions(error)public
No documentation available.
# File activesupport/lib/active_support/actionable_error.rb, line 18
def self.actions(error) # :nodoc:
case error
when ActionableError, -> it { Class === it && it < ActionableError }
error._actions
else
{}
end
end