Package org.axonframework.modelling.saga
Class SagaExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.modelling.saga.SagaExecutionException
- All Implemented Interfaces:
Serializable
Exception triggered by a saga while it is processing an event or processing a task.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSagaExecutionException(String message, Throwable cause) Initializes the exception using 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
-
SagaExecutionException
Initializes the exception using the givenmessageandcause.- Parameters:
message- The message describing the exceptioncause- The underlying cause of the exception
-