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 Method Summary
::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.  | 
    
| #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
This class inherits a constructor from SignalException