るりまサーチ

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

別のキーワード

  1. open3 popen2e
  2. socket af_e164
  3. matrix det_e
  4. matrix rank_e
  5. open3 capture2e

ライブラリ

検索結果

SystemCallError#errno -> Integer | nil (6202.0)

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

...します。

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

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


なお、例...
...外を発生させずにエラーコードを得るには、
E
rrno::EXXX::Errno 定数を使います。...