ft_transcendence/srcs/.venv/lib/python3.11/site-packages/restapi/exceptions.py
2023-11-23 16:43:30 +01:00

11 lines
165 B
Python

class APIError(Exception):
def __init__(self, status=400, msg='', code=0):
self.status = status
self.msg = msg
self.code = code