app/django/dispatch/errors.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sat, 13 Sep 2008 21:27:17 +0000
changeset 140 c3d098d6fafa
parent 54 03e267d67478
permissions -rw-r--r--
Added feedparser to soc/utils and modified svn:externals for vendor to include feedparser svn Patch by: Pawel Solyga Review by: to-be-reviewed

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