Package org.apache.geode.cache
Class OperationAbortedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.GemFireException
org.apache.geode.cache.CacheRuntimeException
org.apache.geode.cache.OperationAbortedException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CacheLoaderException,CacheWriterException,ClientNotReadyException,GatewayException,ServerRefusedConnectionException,TimeoutException
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 Summary
ConstructorsConstructorDescriptionCreates a new instance ofOperationAbortedExceptionwithout detail message.Constructs an instance ofOperationAbortedExceptionwith the specified detail message.OperationAbortedException(String msg, Throwable cause) Constructs an instance ofOperationAbortedExceptionwith the specified detail message and cause.Constructs an instance ofOperationAbortedExceptionwith the specified cause. -
Method Summary
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toStringMethods inherited from class org.apache.geode.GemFireException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
OperationAbortedException
public OperationAbortedException()Creates a new instance ofOperationAbortedExceptionwithout detail message. -
OperationAbortedException
Constructs an instance ofOperationAbortedExceptionwith the specified detail message.- Parameters:
msg- the detail message
-
OperationAbortedException
Constructs an instance ofOperationAbortedExceptionwith the specified detail message and cause.- Parameters:
msg- the detail messagecause- the causal Throwable
-
OperationAbortedException
Constructs an instance ofOperationAbortedExceptionwith the specified cause.- Parameters:
cause- the causal Throwable
-