wag-managment-api-service-v.../ErrorHandlers/Exceptions/api_exc.py

8 lines
238 B
Python

class HTTPExceptionApi(Exception):
def __init__(self, error_code: str, lang: str, loc: str = "", sys_msg: str = ""):
self.error_code = error_code
self.lang = lang
self.loc = loc
self.sys_msg = sys_msg