Source code for retools.exc

"""retools exceptions"""


[docs]class RetoolsException(BaseException): """retools package base exception"""
[docs]class ConfigurationError(RetoolsException): """Raised for general configuration errors"""
[docs]class CacheConfigurationError(RetoolsException): """Raised when there's a cache configuration error"""
[docs]class QueueError(RetoolsException): """Raised when there's an error in the queue code"""
[docs]class AbortJob(RetoolsException): """Raised to abort execution of a job"""