Class LifecycleHandlerInvocationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.lifecycle.LifecycleHandlerInvocationException
- All Implemented Interfaces:
Serializable
Exception indicating a failure occurred during a lifecycle handler method invocation.
- Since:
- 4.3.0
- Author:
- Steven van Beelen
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionLifecycleHandlerInvocationException(String message, Throwable cause) Instantiates an exception using the givenmessageandcauseindicating a failure during a lifecycle handler method invocation. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
LifecycleHandlerInvocationException
Instantiates an exception using the givenmessageandcauseindicating a failure during a lifecycle handler method invocation.- Parameters:
message- The message describing the exception.cause- The underlying cause of the exception.
-