ContainerConnectException class
Thrown when a running container cannot be reached over the network.
Raised when the host IP address or mapped port of a container cannot be determined, or when the Reaper (ryuk) TCP handshake fails after all retry attempts are exhausted.
Example:
try {
await container.start();
} on ContainerConnectException catch (e) {
print(e.message);
}
- Implemented types
Constructors
- ContainerConnectException(String message)
-
Creates a ContainerConnectException with the given
message.const
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited