Class DockerTestException

  • All Implemented Interfaces:
    Serializable

    public class DockerTestException
    extends Exception
    Any exception raised in the Docker test framework.
    Since:
    12.7RC1
    Version:
    $Id: c6924c157de3bfd723570bd889c00e8ab00b0bb2 $
    See Also:
    Serialized Form
    • Constructor Detail

      • DockerTestException

        public DockerTestException​(String message)
        Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(Throwable).
        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method)
      • DockerTestException

        public DockerTestException​(Throwable cause)
        Parameters:
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is nonexistent or unknown
      • DockerTestException

        public DockerTestException​(String message,
                                   Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method)
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is nonexistent or unknown