Class AxonTransientException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ConcurrencyException, ExecutionException, JdbcException, LockAcquisitionFailedException, NoHandlerForCommandException, UnableToClaimTokenException, UnableToInitializeTokenException, UnableToRetrieveIdentifierException

public abstract class AxonTransientException extends AxonException
Exception indicating an error occurred that might be resolved by retrying the operation that caused the exception. Typically, the cause of the exception is of temporary nature and may be resolved without intervention.
Since:
0.6
Author:
Allard Buijze
See Also:
  • Constructor Details

    • AxonTransientException

      public AxonTransientException(String message)
      Initializes the exception using the given message.
      Parameters:
      message - The message describing the exception
    • AxonTransientException

      public AxonTransientException(String message, Throwable cause)
      Initializes the exception using the given message and cause.
      Parameters:
      message - The message describing the exception
      cause - The underlying cause of the exception