Package org.xwiki.test.docker.junit5
Class DockerTestException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xwiki.test.docker.junit5.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 Summary
Constructors Constructor Description DockerTestException(String message)
Constructs a new exception with the specified detail message.DockerTestException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.DockerTestException(Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
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 toThrowable.initCause(Throwable)
.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-
DockerTestException
public DockerTestException(Throwable cause)
- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
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 theThrowable.getMessage()
method)cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is nonexistent or unknown
-
-