Package org.axonframework.test
Class FixtureExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.AxonNonTransientException
org.axonframework.test.FixtureExecutionException
- All Implemented Interfaces:
Serializable
Exception indicating that an error occurred that prevented successful execution of a test fixture.
- Since:
- 0.6
- Author:
- Allard Buijze
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFixtureExecutionException(String message) Construct the exception with the givenmessage.FixtureExecutionException(String message, Throwable cause) Construct the exception with the givenmessageandcause. -
Method Summary
Methods inherited from class org.axonframework.common.AxonNonTransientException
isCauseOfMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FixtureExecutionException
Construct the exception with the givenmessage.- Parameters:
message- the message describing the cause
-
FixtureExecutionException
Construct the exception with the givenmessageandcause.- Parameters:
message- the message describing the causecause- the underlying cause
-