るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.019秒)

別のキーワード

  1. _builtin $load_path
  2. kernel $error_info
  3. kernel $load_path
  4. kernel $ignorecase
  5. kernel $argv

ライブラリ

モジュール

検索結果

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