Class NotReadyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.pgatzka.docker.internal.NotReadyException
- All Implemented Interfaces:
Serializable
Thrown by
Readiness when a container does not reach the requested ready state
within the configured timeout, or disappears mid-wait. Wrapped by the calling task into
a GradleException.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNotReadyException(String msg) Construct a new exception describing why readiness was not reached. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotReadyException
Construct a new exception describing why readiness was not reached.- Parameters:
msg- human-readable description of the unmet readiness condition
-