Package org.axonframework.test
Class AxonAssertionError
java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.AssertionError
org.axonframework.test.AxonAssertionError
- All Implemented Interfaces:
Serializable
Error indication that an Assertion failed during a test case. The message of the error contains detailed information
about the failed assertion.
- Since:
- 0.6
- Author:
- Allard Buijze
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAxonAssertionError(String detailMessage) Create a new error instance using the givendetailMessage.AxonAssertionError(String detailMessage, Throwable cause) Create a new error instance using the givencauseanddetailMessage. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AxonAssertionError
Create a new error instance using the givendetailMessage.- Parameters:
detailMessage- A detailed description of the failed assertion.
-
AxonAssertionError
Create a new error instance using the givencauseanddetailMessage.- Parameters:
detailMessage- A detailed description of the failed assertion.cause- The cause of the error.
-