るりまサーチ

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

別のキーワード

  1. kernel $error_info
  2. kernel $error_position
  3. english $error_info
  4. kernel $process_id
  5. kernel $load_path

ライブラリ

モジュール

検索結果

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