public class MisAlignedAssertionError extends AssertionError
MisAlignedAssertionError is thrown to indicate that an attempted memory operation
failed due to a misaligned memory address.
This error typically indicates a programming error in low-level memory manipulation.
For example, it is thrown by methods like compareAndSwapInt when the memory
address provided for a compare-and-swap operation is not properly aligned according
to the requirements of the underlying architecture or API.
As this error is an AssertionError, it is considered as an unchecked error.
AssertionError,
Serialized Form| Constructor and Description |
|---|
MisAlignedAssertionError() |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringCopyright © 2024. All rights reserved.