app/django/dispatch/errors.py
author Todd Larsen <tlarsen@google.com>
Wed, 24 Sep 2008 05:58:45 +0000
changeset 199 14ede160ef16
parent 54 03e267d67478
permissions -rw-r--r--
Minor tweaks to Site menu item names to make them more descriptive.

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