app/django/dispatch/errors.py
author Todd Larsen <tlarsen@google.com>
Fri, 12 Sep 2008 20:31:56 +0000
changeset 137 0f572149449d
parent 54 03e267d67478
permissions -rw-r--r--
Make isIdDeveloper() also able to check an is_developer Boolean property in User entities. Review URL: http://codereviews.googleopensourceprograms.com/601

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