dispatch.errors
index
p:\dispatch\errors.py

Error types for dispatcher mechanism

 
Classes
            
Exception
DispatcherError
DispatcherKeyError(KeyError, DispatcherError)
DispatcherTypeError(TypeError, DispatcherError)
KeyError(LookupError)
DispatcherKeyError(KeyError, DispatcherError)
TypeError(StandardError)
DispatcherTypeError(TypeError, DispatcherError)
 
class DispatcherError(Exception)
      Base class for all Dispatcher errors
 
   Data and non-method functions defined here:
__doc__ = 'Base class for all Dispatcher errors'
__module__ = 'dispatch.errors'

Methods inherited from Exception:
__getitem__(...)
__init__(...)
__str__(...)
 
class DispatcherKeyError(KeyError, DispatcherError)
      Error raised when unknown (sender,signal) set specified
 
  
Method resolution order:
DispatcherKeyError
KeyError
LookupError
StandardError
Exception
DispatcherError

Data and non-method functions defined here:
__doc__ = 'Error raised when unknown (sender,signal) set specified'
__module__ = 'dispatch.errors'

Methods inherited from Exception:
__getitem__(...)
__init__(...)
__str__(...)
 
class DispatcherTypeError(TypeError, DispatcherError)
      Error raised when inappropriate signal-type specified (None)
 
  
Method resolution order:
DispatcherTypeError
TypeError
StandardError
Exception
DispatcherError

Data and non-method functions defined here:
__doc__ = 'Error raised when inappropriate signal-type specified (None)'
__module__ = 'dispatch.errors'

Methods inherited from Exception:
__getitem__(...)
__init__(...)
__str__(...)
 
Data
             __file__ = r'p:\dispatch\errors.py'
__name__ = 'dispatch.errors'