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
Exception thrown when a request is made with an idempotency key that is already in progress.
Corresponds to HTTP 409 Conflict.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIdempotencyConflictException(String message) Constructs anIdempotencyConflictExceptionwith the given detail message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IdempotencyConflictException
Constructs anIdempotencyConflictExceptionwith the given detail message.- Parameters:
message- a description of the conflict; typically includes the conflicting key.
-