Error while establishing a client connection to the server.
| 20 | |
| 21 | |
| 22 | class ClientConnectionError(ClientError): |
| 23 | """Error while establishing a client connection to the server.""" |
| 24 | |
| 25 | def __str__(self) -> str: |
| 26 | msg = "Failed to establish client connection to the Dagger session" |
| 27 | if sup := super().__str__(): |
| 28 | return f"{msg}: {sup}" |
| 29 | return msg |
| 30 | |
| 31 | |
| 32 | class TransportError(ClientError): |
no outgoing calls
no test coverage detected