Package org.axonframework.messaging.core
Class ExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.AxonTransientException
org.axonframework.messaging.core.ExecutionException
- All Implemented Interfaces:
Serializable
Exception thrown to indicate that execution of a task has failed. Depending on the cause of the execution exception
the operation could succeed if repeated.
- Since:
- 3.0
- Author:
- Rene de Waele
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionExecutionException(String message, Throwable cause) Initialize an ExecutionException with the givenmessageandcause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExecutionException
Initialize an ExecutionException with the givenmessageandcause.- Parameters:
message- The message describing the cause of the exceptioncause- The cause of the exception
-