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
 
  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

Methods inherited from KeyError:
__str__(...)

Methods inherited from Exception:
__getitem__(...)
__init__(...)

 
class DispatcherTypeError(TypeError, DispatcherError)
    Error raised when inappropriate signal-type specified (None)
 
 
Method resolution order:
DispatcherTypeError
TypeError
StandardError
Exception
DispatcherError

Methods inherited from Exception:
__getitem__(...)
__init__(...)
__str__(...)

 
Data
        __file__ = r'p:\dispatch\errors.pyc'
__name__ = 'dispatch.errors'