跳至内容 跳至搜索

Active Support 可救援

Rescuable 模块添加了对更轻松异常处理的支持。

命名空间
方法
R

实例公共方法

rescue_with_handler(exception)

委派给类方法,但使用实例作为 rescue_from 处理程序的主题(方法调用、instance_exec 块)。

# File activesupport/lib/active_support/rescuable.rb, line 166
def rescue_with_handler(exception)
  self.class.rescue_with_handler exception, object: self
end