るりまサーチ (Ruby 2.4.0)

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

別のキーワード

  1. kernel $srcdir
  2. kernel $process_id
  3. kernel $error_info
  4. kernel $last_read_line
  5. kernel $program_name

ライブラリ

検索結果

Kernel$$ERROR_POSITION -> [String] | nil (99664.0)

$@ の別名

$@ の別名

require "English"
class SomethingError < StandardError; end

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