1件ヒット
[1-1件を表示]
(0.118秒)
ライブラリ
- ビルトイン (1)
検索結果
-
Exception
# backtrace -> [String] (24325.0) -
バックトレース情報を返します。
...)
* "#{sourcefile}:#{sourceline}"
(トップレベルの場合)
という形式の String の配列です。
//emlist[例][ruby]{
def methd
raise
end
begin
methd
rescue => e
p e.backtrace
end
#=> ["filename.rb:2:in `methd'", "filename.rb:6"]
//}
@see Exception#backtrace_locations...