Class AtomicOperationException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
LockedException

public class AtomicOperationException extends TxnExecutionException
A TxnExecutionException thrown when an atomic operation has failed (e.g. because the ref was locked).
See Also:
  • Field Details

  • Constructor Details

    • AtomicOperationException

      public AtomicOperationException()
      Creates a new AtomicOperationException.
    • AtomicOperationException

      public AtomicOperationException(String message)
      Creates a new AtomicOperationException with the provided message.
      Parameters:
      message - the message
    • AtomicOperationException

      public AtomicOperationException(String message, Throwable cause)
      Creates a new AtomicOperationException with the provided message and cause.
      Parameters:
      message - the message
      cause - the cause of the message
    • AtomicOperationException

      public AtomicOperationException(Throwable cause)
      Creates a new AtomicOperationException with the provided message and cause.
      Parameters:
      cause - the cause of the exception.