| 19 | |
| 20 | |
| 21 | class HTTPException(Exception): |
| 22 | def __init__(self, status_code: int, reason: str, message: str): |
| 23 | self.status_code = status_code |
| 24 | self.reason = reason |
| 25 | self.message = message |
| 26 | |
| 27 | |
| 28 | class OpenAIAPIException(HTTPException): |
no outgoing calls
no test coverage detected