Skip to content

Instantly share code, notes, and snippets.

@Joaopcamposs
Created May 10, 2022 15:54
Show Gist options
  • Save Joaopcamposs/54d8b1f04b0b18537d76b501a6ecec7c to your computer and use it in GitHub Desktop.
Save Joaopcamposs/54d8b1f04b0b18537d76b501a6ecec7c to your computer and use it in GitHub Desktop.
# exceptions.py
class UserException(Exception):
...
class UserNotFoundError(UserException):
def __init__(self):
self.status_code = 404
self.detail = "User Not Found"
class UserAlreadyExistError(UserException):
def __init__(self):
self.status_code = 409
self.detail = "User Already Exists"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment