るりまサーチ (Ruby 3.2)

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

別のキーワード

  1. english $error_info
  2. english $error_position
  3. english $child_status
  4. mkmf $sitelibdir
  5. mkmf $cflags

ライブラリ

モジュール

検索結果

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

$@ の別名

$@ の別名

require "English"
class SomethingError < StandardError; end

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