跳至內容 跳至搜尋

Active Support Rescuable

Rescuable 模組新增了較簡便的例外處理支援。

命名空間
方法
R

Instance Public methods

rescue_with_handler(exception)

委派給類別方法,但使用實例作為救援處理常式 (方法呼叫、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