(self, detail: Union[str, None] = None)
| 48 | |
| 49 | class AgentNetworkException(AgentClientException): |
| 50 | def __init__(self, detail: Union[str, None] = None) -> None: |
| 51 | super().__init__("agent_network", detail) |
| 52 | |
| 53 | |
| 54 | class TaskTimeoutException(TaskClientException): |