photo-python/openphoto/errors.py
sneakypete81 48e29f24a9 PyLint fixes
Moved credentials into new Config class
2013-05-25 11:33:41 +01:00

14 lines
377 B
Python

class OpenPhotoError(Exception):
""" Indicates that an OpenPhoto operation failed """
pass
class OpenPhotoDuplicateError(OpenPhotoError):
""" Indicates that an upload operation failed due to a duplicate photo """
pass
class OpenPhoto404Error(Exception):
"""
Indicates that an Http 404 error code was received
(resource not found)
"""
pass