Package circuits :: Module core :: Class Error

Class Error

object --+    
         |    
     Event --+
             |
            Error

Error Event

This Event is sent for any exceptions that occur during the execution of an Event Handler that is not SystemExit or KeyboardInterrupt.

Instance Methods
 
__init__(self, type, value, traceback)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Inherited from Event: __eq__, __getitem__, __repr__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Instance Variables

Inherited from Event: channel, name, target

Properties

Inherited from object: __class__

Method Details

__init__(self, type, value, traceback)
(Constructor)

 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Parameters:
  • type (type) - type of exception
  • value (exceptions.TypeError) - exception object
  • traceback (traceback) - traceback of exception
Overrides: object.__init__