Source code for pyplanet.core.exceptions


[docs]class ImproperlyConfigured(Exception): """The configuration is not given or is invalid.""" pass
[docs]class AppRegistryNotReady(Exception): """The registry was not yet ready to invoke""" pass
[docs]class InvalidAppModule(Exception): """The given app string is invalid or the app itself is misconfigured!"""
[docs]class TransportException(Exception): """The XML-RPC tunnel got a transport error."""
[docs]class SignalException(Exception): """Signal receiver thrown an exception!"""
[docs]class SignalGlueStop(Exception): """Throw this exception inside of your glue method to stop executing the signal."""