るりまサーチ (Ruby 2.7.0)

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

別のキーワード

  1. kernel $debug
  2. kernel $1
  3. kernel $2
  4. kernel $hdrdir
  5. kernel $ofs

ライブラリ

モジュール

検索結果

Kernel$$ERROR_INFO -> Exception | nil (54640.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