Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/dogpile/cache/exception.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""Exception classes for dogpile.cache."""
4class DogpileCacheException(Exception):
5 """Base Exception for dogpile.cache exceptions to inherit from."""
8class RegionAlreadyConfigured(DogpileCacheException):
9 """CacheRegion instance is already configured."""
12class RegionNotConfigured(DogpileCacheException):
13 """CacheRegion instance has not been configured."""
16class ValidationError(DogpileCacheException):
17 """Error validating a value or option."""
20class PluginNotFound(DogpileCacheException):
21 """The specified plugin could not be found.
23 .. versionadded:: 0.6.4
25 """