Class ResetNotSupportedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.AxonNonTransientException
org.axonframework.messaging.eventhandling.replay.ResetNotSupportedException
- All Implemented Interfaces:
Serializable
Exception indicating that a reset is not supported by a component.
- Since:
- 3.2
- Author:
- Allard Buijze
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionResetNotSupportedException(String message) Initialize the exception with givenmessageResetNotSupportedException(String message, Throwable cause) Initialize the exception with 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
-
ResetNotSupportedException
Initialize the exception with givenmessage- Parameters:
message- a message describing the cause of the exception
-
ResetNotSupportedException
Initialize the exception with givenmessageandcause.- Parameters:
message- a message describing the cause of the exceptioncause- the cause of this exception
-