Exception raised when agent HTTP request fails.
| 12 | |
| 13 | |
| 14 | class AgentHTTPError(RuntimeError): |
| 15 | """Exception raised when agent HTTP request fails.""" |
| 16 | |
| 17 | def __init__(self, message: str, status_code: int | None = None): |
| 18 | super().__init__(message) |
| 19 | self.status_code = status_code |
| 20 | |
| 21 | |
| 22 | class AgentConnectionError(AgentHTTPError): |