最速Rubyリファレンスマニュアル検索!
すべて(3)
1.8.7(1)
1.9.2(1)
1.9.3(1)
3件ヒット
[1-3件を表示]
(0.003秒)
トップページ
>
クラス:
SystemExit
>
:特異メソッド
ライブラリ
ビルトイン
(3)
検索結果
先頭1件
SystemExit
.
new(status = 0
,
error
_
message = "") -> SystemExit
SystemExit
.
new(status = 0
,
error
_
message = "") -> SystemExit
(2)
1.8.7
1.9.2
1.9.3
特異メソッド
SystemExit オブジェクトを生成して返します。
...
SystemExit
オブジェクトを生成して返します。
@param status 終了ステータスを整数で指定します。
@param error_message エラーメッセージを文字列で指定します。
例:
ex =
SystemExit
.new(1)
p ex.status # => 1
...