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)