File size: 309 Bytes
d8d4fef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | class PDFSizeException(Exception):
"""Raised when the input value is less than 3"""
pass
class ChatbotInitException(Exception):
"""Raised when there's a problem with chabot init"""
pass
class ChatbotAPIException(Exception):
"""Raised when there's a problem with openai api"""
pass
|