るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.041秒)
トップページ > バージョン:2.6.0[x] > クエリ:nil[x] > クエリ:$ERROR_INFO[x]

別のキーワード

  1. kernel $error_info
  2. kernel $load_path
  3. kernel $ors
  4. english $ofs
  5. kernel $srcdir

ライブラリ

モジュール

検索結果

Kernel$$ERROR_INFO -> Exception | nil (54643.0)

$! の別名

$! の別名

require "English"
class SomethingError < StandardError; end

begin
raise SomethingError
rescue
p $ERROR_INFO.backtrace #=> ["sample.rb:5"]
p $ERROR_INFO.to_s #=> "SomethingError"
end