app/django/dispatch/errors.py
author Todd Larsen <tlarsen@google.com>
Wed, 24 Sep 2008 05:58:15 +0000
changeset 198 e4cbd0909520
parent 54 03e267d67478
permissions -rw-r--r--
Major refactoring, to switch from using inheritance from soc.logic.menu classes to an envelope-letter model instead.

"""Error types for dispatcher mechanism
"""

class DispatcherError(Exception):
    """Base class for all Dispatcher errors"""
class DispatcherKeyError(KeyError, DispatcherError):
    """Error raised when unknown (sender,signal) set specified"""
class DispatcherTypeError(TypeError, DispatcherError):
    """Error raised when inappropriate signal-type specified (None)"""