Package org.axonframework.common
Class ProcessRetriesExhaustedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.ProcessRetriesExhaustedException
- All Implemented Interfaces:
Serializable
Exception indicating that an action was retried a maximum times, without a good result.
- Since:
- 4.5.13
- Author:
- Gerard Klijs
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionProcessRetriesExhaustedException(String message) Initializes the exception using the givenmessage.ProcessRetriesExhaustedException(String message, Throwable cause) Initializes the exception using the givenmessageandcause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ProcessRetriesExhaustedException
Initializes the exception using the givenmessage.- Parameters:
message- The message describing the exception
-
ProcessRetriesExhaustedException
Initializes the exception using the givenmessageandcause.- Parameters:
message- The message describing the exceptioncause- The underlying cause of the exception
-