Class IdempotencyConflictException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.ravocode.avoonce.core.exception.IdempotencyConflictException
All Implemented Interfaces:
Serializable

public class IdempotencyConflictException extends RuntimeException
Exception thrown when a request is made with an idempotency key that is already in progress. Corresponds to HTTP 409 Conflict.
See Also:
  • Constructor Details

    • IdempotencyConflictException

      public IdempotencyConflictException(String message)
      Constructs an IdempotencyConflictException with the given detail message.
      Parameters:
      message - a description of the conflict; typically includes the conflicting key.