Package org.apache.datasketches.memory
Class BufferPositionInvariantsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.datasketches.memory.BufferPositionInvariantsException
- All Implemented Interfaces:
Serializable
Position operation violation.
- See Also:
-
Constructor Summary
ConstructorDescriptionBufferPositionInvariantsException
(String details) The associated position operation violated one of the positional invariants. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BufferPositionInvariantsException
The associated position operation violated one of the positional invariants.The invariants equation is
0 <= start <= position <= end <= capacity
.- Parameters:
details
- of the violation.
-