Class AggregateEntityNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.AxonNonTransientException
org.axonframework.modelling.command.AggregateEntityNotFoundException
- All Implemented Interfaces:
Serializable
Exception indicating that the entity of an aggregate could not be found.
- Since:
- 3.3
- Author:
- Steven van Beelen
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAggregateEntityNotFoundException(String message) Initialize aAggregateEntityNotFoundExceptionwith givenmessage.AggregateEntityNotFoundException(String message, Throwable cause) Initialize aAggregateEntityNotFoundExceptionwith 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
-
AggregateEntityNotFoundException
Initialize aAggregateEntityNotFoundExceptionwith givenmessage.- Parameters:
message- The message describing the cause of the exception
-
AggregateEntityNotFoundException
Initialize aAggregateEntityNotFoundExceptionwith givenmessageandcause.- Parameters:
message- The message describing the cause of the exceptioncause- The underlying cause of the exception
-