- new(status = 0, error_message = "") -> SystemExit[permalink][rdoc][edit]
- 
SystemExit オブジェクトを生成して返します。 - [PARAM] status:
- 終了ステータスを整数で指定します。
- [PARAM] error_message:
- エラーメッセージを文字列で指定します。
 例: ex = SystemExit.new(1) p ex.status # => 1 
new(status = 0, error_message = "") -> SystemExit[permalink][rdoc][edit]SystemExit オブジェクトを生成して返します。
例:
ex = SystemExit.new(1) p ex.status # => 1