Your IP : 216.73.216.215


Current Path : /proc/2/root/proc/21979/root/opt/imh-python/lib/python3.9/site-packages/dogpile/cache/
Upload File :
Current File : //proc/2/root/proc/21979/root/opt/imh-python/lib/python3.9/site-packages/dogpile/cache/exception.py

"""Exception classes for dogpile.cache."""


class DogpileCacheException(Exception):
    """Base Exception for dogpile.cache exceptions to inherit from."""


class RegionAlreadyConfigured(DogpileCacheException):
    """CacheRegion instance is already configured."""


class RegionNotConfigured(DogpileCacheException):
    """CacheRegion instance has not been configured."""


class ValidationError(DogpileCacheException):
    """Error validating a value or option."""


class PluginNotFound(DogpileCacheException):
    """The specified plugin could not be found.

    .. versionadded:: 0.6.4

    """