python-webservice/models/exceptions.py

15 lines
330 B
Python
Raw Normal View History

2022-10-14 18:16:52 +00:00
class AlbumException(Exception):
...
class AlbumNotFoundError(AlbumException):
def __init__(self):
self.status_code = 404
self.detail = "Album Not Found"
class AlbumAlreadyExistError(AlbumException):
def __init__(self):
self.status_code = 409
self.detail = "Album Already Exists"