django-imagekit/imagekit/exceptions.py
Eric Eldredge e0567e8fa7 Remove specs.SpecRegistry; add registry module
The registry module splits the work that specs.SpecRegistry
used to do into two classes: GeneratorRegistry and
SourceGroupRegistry. These two registries are wrapped in
Register and Unregister utilities for API convenience.
2012-12-01 17:16:09 -05:00

18 lines
235 B
Python

class AlreadyRegistered(Exception):
pass
class NotRegistered(Exception):
pass
class UnknownExtensionError(Exception):
pass
class UnknownFormatError(Exception):
pass
class MissingGeneratorId(Exception):
pass