るりまサーチ (Ruby 2.7.0)

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

別のキーワード

  1. kernel $error_info
  2. kernel $ofs
  3. kernel $debug
  4. kernel $process_id
  5. kernel $topdir

ライブラリ

モジュール

検索結果

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

$@ の別名

$@ の別名

require "English"
class SomethingError < StandardError; end

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