Class EventStoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.AxonNonTransientException
org.axonframework.eventsourcing.eventstore.EventStoreException
- All Implemented Interfaces:
Serializable
Indicates that the given events stream could not be stored or read due to an underlying exception.
- Since:
- 0.1
- Author:
- Allard Buijze
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEventStoreException(String message) Initialize the exception with the givenmessage.EventStoreException(String message, Throwable cause) Initialize 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
-
EventStoreException
Initialize the exception with the givenmessage.- Parameters:
message- a detailed message of the cause of the exception
-
EventStoreException
Initialize the exception with the givenmessageandcause- Parameters:
message- a detailed message of the cause of the exceptioncause- the original cause of this exception
-