Package circuits :: Package 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, **kwargs)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Inherited from Event: __eq__, __getitem__, __repr__

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

Class Variables
  channel = 'exception'
The channel this Event is bound for

Inherited from Event: target

Instance Variables

Inherited from Event: name

Properties

Inherited from object: __class__

Method Details

__init__(self, type, value, traceback, **kwargs)
(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
  • kwargs (dict) - (Optional) Additional Information
Overrides: object.__init__