chatx / exceptions /GPTException.py
imseldrith's picture
Upload folder using huggingface_hub (#1)
97ef430
raw
history blame contribute delete
157 Bytes
class GPTException(Exception):
def __init__(self, message, status_code=400):
super().__init__(message)
self.status_code = status_code