1件ヒット
[1-1件を表示]
(0.157秒)
別のキーワード
ライブラリ
- ビルトイン (1)
クラス
- TracePoint (1)
検索結果
-
TracePoint
# raised _ exception -> Exception (72625.0) -
発生した例外を返します。
発生した例外を返します。
@raise RuntimeError :raise イベントのためのイベントフックの外側で実行し
た場合に発生します。
//emlist[例][ruby]{
trace = TracePoint.new(:raise) do |tp|
tp.raised_exception # => #<ZeroDivisionError: divided by 0>
end
trace.enable
begin
0/0
rescue
end
//}