Class IdempotencyMismatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.ravocode.avoonce.core.exception.IdempotencyMismatchException
- All Implemented Interfaces:
Serializable
Thrown when an existing idempotency key is reused with a different request payload.
Corresponds to HTTP 422 Unprocessable Entity.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIdempotencyMismatchException(String message) Constructs anIdempotencyMismatchExceptionwith 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
-
IdempotencyMismatchException
Constructs anIdempotencyMismatchExceptionwith the given detail message.- Parameters:
message- a description of the mismatch; typically indicates key reuse with a different payload.
-