Current Path :
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
beaker
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//opt/alt/python37/lib/python3.7/site-packages/beaker/exceptions.py
"""Beaker exception classes""" class BeakerException(Exception): pass class BeakerWarning(RuntimeWarning): """Issued at runtime.""" class CreationAbortedError(Exception): """Deprecated.""" class InvalidCacheBackendError(BeakerException, ImportError): pass class MissingCacheParameter(BeakerException): pass class LockError(BeakerException): pass class InvalidCryptoBackendError(BeakerException): pass