Exception: SystemExit
Instance Method Summary collapse
-
#new(status = 0) ⇒ Object
constructor
Create a new
SystemExit
exception with the given status. -
#status ⇒ Fixnum
Return the status value associated with this system exit.
-
#success? ⇒ Boolean
Returns
true
if exiting successful,false
if not.
Methods inherited from Exception
#backtrace, #exception, exception, #inspect, #message, #set_backtrace, #to_s, #to_str
Constructor Details
#new(status = 0) ⇒ Object
Create a new SystemExit
exception with the given status.
544 545 546 |
# File 'error.c', line 544 static VALUE exit_initialize(argc, argv, exc) int argc; |
Instance Method Details
#status ⇒ Fixnum
Return the status value associated with this system exit.
568 569 570 |
# File 'error.c', line 568 static VALUE exit_status(exc) VALUE exc; |
#success? ⇒ Boolean
Returns true
if exiting successful, false
if not.
583 584 585 |
# File 'error.c', line 583 static VALUE exit_success_p(exc) VALUE exc; |