Package org.axonframework.modelling.saga
Class SagaStorageException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.AxonTransientException
org.axonframework.modelling.saga.SagaStorageException
- All Implemented Interfaces:
Serializable
Exception indicating that an error has occurred while storing a Saga.
- Since:
- 0.7
- Author:
- Allard Buijze
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSagaStorageException(String message) Initialize a SagaStorageException with the given descriptivemessage.SagaStorageException(String message, Throwable cause) Initialize a SagaStorageException with the given descriptivemessageandcause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SagaStorageException
Initialize a SagaStorageException with the given descriptivemessage.- Parameters:
message- The message describing the error.
-
SagaStorageException
Initialize a SagaStorageException with the given descriptivemessageandcause.- Parameters:
message- The message describing the error.cause- The cause of the error.
-