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