るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.025秒)
トップページ > モジュール:Kernel[x] > クエリ:kernel[x] > クエリ:raise[x] > ライブラリ:English[x]

別のキーワード

  1. kernel exec
  2. kernel spawn
  3. kernel system
  4. kernel open

キーワード

検索結果

Kernel$$ERROR_INFO -> Exception | nil (9009.0)

$! の別名

...$! の別名

require "English"
class SomethingError < StandardError; end

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

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

$@ の別名

...$@ の別名

require "English"
class SomethingError < StandardError; end

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