Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: third_party/google-endpoints/dogpile/cache/exception.py

Issue 2666783008: Add google-endpoints to third_party/. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 """Exception classes for dogpile.cache."""
2
3
4 class DogpileCacheException(Exception):
5 """Base Exception for dogpile.cache exceptions to inherit from."""
6
7
8 class RegionAlreadyConfigured(DogpileCacheException):
9 """CacheRegion instance is already configured."""
10
11
12 class RegionNotConfigured(DogpileCacheException):
13 """CacheRegion instance has not been configured."""
14
15
16 class ValidationError(DogpileCacheException):
17 """Error validating a value or option."""
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698