| 52 | |
| 53 | |
| 54 | class TaskTimeoutException(TaskClientException): |
| 55 | def __init__(self, detail: Union[str, None] = None) -> None: |
| 56 | super().__init__("task_timeout", detail) |
| 57 | |
| 58 | |
| 59 | class TaskNetworkException(TaskClientException): |
nothing calls this directly
no outgoing calls
no test coverage detected