るりまサーチ

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

別のキーワード

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

種類

ライブラリ

モジュール

検索結果

static void error_pos(void) (38200.0)

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

$@ の別名

...$@ の別名

require "English"
class SomethingError < StandardError; end

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