diff options
author | root <root@raspberrypi.(none)> | 2015-04-03 16:41:45 +0200 |
---|---|---|
committer | root <root@raspberrypi.(none)> | 2015-04-03 16:41:45 +0200 |
commit | 7e974f306adb82dd38cc4adc4adbe624619c6f1a (patch) | |
tree | ea4ceb544367fe76709ae1ee1333fd93488d9f35 /lib/beaker/exceptions.py | |
parent | some fixes (diff) | |
download | pyload-7e974f306adb82dd38cc4adc4adbe624619c6f1a.tar.xz |
add lib
Diffstat (limited to 'lib/beaker/exceptions.py')
-rw-r--r-- | lib/beaker/exceptions.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/beaker/exceptions.py b/lib/beaker/exceptions.py new file mode 100644 index 000000000..cc0eed286 --- /dev/null +++ b/lib/beaker/exceptions.py @@ -0,0 +1,24 @@ +"""Beaker exception classes""" + +class BeakerException(Exception): + pass + + +class CreationAbortedError(Exception): + """Deprecated.""" + + +class InvalidCacheBackendError(BeakerException, ImportError): + pass + + +class MissingCacheParameter(BeakerException): + pass + + +class LockError(BeakerException): + pass + + +class InvalidCryptoBackendError(BeakerException): + pass |