MCPcopy Create free account
hub / github.com/dagger/dagger / ClientConnectionError

Class ClientConnectionError

sdk/python/src/dagger/_exceptions.py:22–29  ·  view source on GitHub ↗

Error while establishing a client connection to the server.

Source from the content-addressed store, hash-verified

20
21
22class 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
32class TransportError(ClientError):

Callers 4

from_envMethod · 0.90
startMethod · 0.90
get_schemaMethod · 0.90
sessionMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected