1
0
mirror of https://github.com/enpaul/kodak.git synced 2024-09-21 16:23:49 +00:00
kodak/imagemuck/exceptions.py

40 lines
673 B
Python
Raw Normal View History

2020-12-22 02:08:01 +00:00
"""Application exceptions
::
2021-05-05 17:48:02 +00:00
ImageMuckException
2020-12-22 02:08:01 +00:00
+-- ClientError
+-- ServerError
"""
2021-05-05 17:48:02 +00:00
class ImageMuckException(Exception):
2020-12-22 02:08:01 +00:00
"""Whomp whomp, something went wrong
But seriously, don't ever raise this exception
"""
status: int
2021-05-05 17:48:02 +00:00
class ClientError(ImageMuckException):
2020-12-22 02:08:01 +00:00
"""Error while processing client side input"""
status = 400
class ImageResourceDeletedError(ClientError):
"""Requested image resource has been deleted"""
status = 410
2021-05-05 17:48:02 +00:00
class ServerError(ImageMuckException):
2020-12-22 02:08:01 +00:00
"""Error while processing server side data"""
status = 500
class ImageFileRemovedError(ServerError):
"""Image file removed from server"""