Class OperationAbortedException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CacheLoaderException, CacheWriterException, ClientNotReadyException, GatewayException, ServerRefusedConnectionException, TimeoutException

public abstract class OperationAbortedException extends CacheRuntimeException
Indicates that the operation that would have otherwise affected the cache has been aborted. Only subclasses are instantiated.
Since:
GemFire 3.0
See Also:
  • Constructor Details

    • OperationAbortedException

      public OperationAbortedException()
      Creates a new instance of OperationAbortedException without detail message.
    • OperationAbortedException

      public OperationAbortedException(String msg)
      Constructs an instance of OperationAbortedException with the specified detail message.
      Parameters:
      msg - the detail message
    • OperationAbortedException

      public OperationAbortedException(String msg, Throwable cause)
      Constructs an instance of OperationAbortedException with the specified detail message and cause.
      Parameters:
      msg - the detail message
      cause - the causal Throwable
    • OperationAbortedException

      public OperationAbortedException(Throwable cause)
      Constructs an instance of OperationAbortedException with the specified cause.
      Parameters:
      cause - the causal Throwable