跳到內容 跳到搜尋

Active Support Rescuable

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