thanhnt-cf's picture
initial commit
8ba64a4
raw
history blame contribute delete
327 Bytes
VENDOR_ERROR_INVALID_JSON = "Vendor Error: Invalid JSON data"
VENDOR_THROW_ERROR = "Vendor Error: {error_message}"
class VendorError(Exception):
def __init__(self, message: str):
super().__init__(message)
class BadRequestError(Exception):
def __init__(self, message: str):
super().__init__(message)