Active Support 可救援
Rescuable
模块添加了对更轻松异常处理的支持。
命名空间
方法
实例公共方法
rescue_with_handler(exception) 链接
委派给类方法,但使用实例作为 rescue_from 处理程序的主题(方法调用、instance_exec
块)。
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/rescuable.rb, line 166 def rescue_with_handler(exception) self.class.rescue_with_handler exception, object: self end