Package com.helger.base.mock.exception
Class MockRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.helger.base.mock.exception.MockRuntimeException
- All Implemented Interfaces:
IMockException,Serializable
Runtime exception for test cases.
- Author:
- Philip Helger
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.Constructor with a message.Constructor with a message and a cause.Constructor with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MockRuntimeException
public MockRuntimeException()Default constructor. -
MockRuntimeException
Constructor with a message.- Parameters:
s- The detail message. May benull.
-
MockRuntimeException
Constructor with a cause.- Parameters:
t- The cause. May benull.
-
MockRuntimeException
Constructor with a message and a cause.- Parameters:
s- The detail message. May benull.t- The cause. May benull.
-