るりまサーチ

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

別のキーワード

  1. logger error
  2. openssl error
  3. logger error?
  4. socket so_error
  5. getoptlong error

種類

ライブラリ

モジュール

検索結果

static void error_pos(void) (38100.0)

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

$@ の別名

...$@ の別名

require "English"
class SomethingError < StandardError; end

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