るりまサーチ

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

別のキーワード

  1. openssl g
  2. openssl g=
  3. dh g
  4. dsa g
  5. dh g=

ライブラリ

検索結果

SystemCallError#errno -> Integer | nil (102.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 # =>...