るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.120秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:l[x] > クラス:SystemCallError[x]

別のキーワード

  1. matrix l
  2. kernel $-l
  3. _builtin $-l
  4. lupdecomposition l

ライブラリ

検索結果

SystemCallError#errno -> Integer | nil (3102.0)

レシーバに対応するシステム依存のエラーコードを返します。

...は nil を返します。

begin
raise Errno::ENOENT
rescue Errno::ENOENT => err
p err.errno # => 2
p Errno::ENOENT::Errno # => 2
end

begin
raise SystemCallError, 'message'
rescue SystemCallError => err
p err.errno # => nil
end...