るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.101秒)
トップページ > クエリ:p[x] > クエリ:<[x] > クエリ:set_backtrace[x]

別のキーワード

  1. _builtin <
  2. bigdecimal <
  3. integer <
  4. float <
  5. comparable <

ライブラリ

クラス

検索結果

Exception#set_backtrace(errinfo) -> nil | String | [String] (21113.0)

バックトレース情報に errinfo を設定し、設定されたバックトレース 情報を返します。

...ます。

@param errinfo nil、String あるいは String の配列のいずれかを指定します。

//emlist[例][ruby]{
begin
begin
raise "inner"
rescue
raise "outer"
end
rescue
$!.backtrace # => ["/path/to/test.rb:5:in `rescue in <main>'", "/path/to/test.rb:2:in `<main>'"]...

Exception#backtrace_locations -> [Thread::Backtrace::Location] (3018.0)

バックトレース情報を返します。Exception#backtraceに似ていますが、 Thread::Backtrace::Location の配列を返す点が異なります。

...バックトレース情報を返します。Exception#backtraceに似ていますが、
Thread::Backtrace::Location の配列を返す点が異なります。

現状では Exception#set_backtrace によって戻り値が変化する事はあり
ません。

//emlist[例: test.rb][ruby]{
require...
...def get_exception
return begin
yield
rescue => e
e
end
end

e = get_exception { check_long_month(2) }
p
e.backtrace_locations
# => ["test.rb:4:in `check_long_month'", "test.rb:15:in `block in <main>'", "test.rb:9:in `get_exception'", "test.rb:15:in `<main>'"]
//}

@see Exception#backtr...