Exception: Interrupt
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
::SignalException,
::Exception
|
|
Instance Chain:
self,
::SignalException,
::Exception
|
|
Inherits: |
SignalException
|
Defined in: | error.c, error.c, signal.c |
Overview
Raised with the interrupt signal is received, typically because the user pressed on Control-C (on most posix platforms). As such, it is a subclass of ::SignalException.
begin
puts "Press ctrl-C when you get bored"
loop {}
rescue Interrupt => e
puts "Note: You will typically use Signal.trap instead."
end
produces:
Press ctrl-C when you get bored
then waits until it is interrupted with Control-C and then prints:
Note: You will typically use Signal.trap instead.
Class Attribute Summary
::Exception - Inherited
.to_tty? | Returns |
Class Method Summary
- .new(*args) constructor Internal use only
::SignalException - Inherited
.new | Construct a new ::SignalException object. |
::Exception - Inherited
.exception | With no argument, or if the argument is the same as the receiver, return the receiver. |
.new | Construct a new ::Exception object, optionally passing in a message. |
Instance Method Summary
::SignalException - Inherited
#signo | Returns a signal number. |
::Exception - Inherited
#== | Equality—If obj is not an ::Exception, returns |
#backtrace | Returns any backtrace associated with the exception. |
#backtrace_locations | Returns any backtrace associated with the exception. |
#cause | Returns the previous exception ($!) at the time this exception was raised. |
#exception | With no argument, or if the argument is the same as the receiver, return the receiver. |
#full_message | Returns formatted string of exception. |
#inspect | Return this exception's class name and message. |
#message | Returns the result of invoking |
#set_backtrace | Sets the backtrace information associated with |
#to_s | Returns exception's message (or the name of the exception if no message is set). |
Constructor Details
.new(*args)
# File 'signal.c', line 345
static VALUE interrupt_init(int argc, VALUE *argv, VALUE self) { VALUE args[2]; args[0] = INT2FIX(SIGINT); rb_scan_args(argc, argv, "01", &args[1]); return rb_call_super(2, args); }