Package org.apache.geode
Class CancelException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.GemFireException
org.apache.geode.cache.CacheRuntimeException
org.apache.geode.CancelException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CacheClosedException,DistributedSystemDisconnectedException,ForcedDisconnectException,FutureCancelledException,GatewayCancelledException,OplogCancelledException,OutOfOffHeapMemoryException,PoolCancelledException,TXManagerCancelledException
Abstract root class of all GemFire exceptions representing system cancellation
- Since:
- GemFire 6.0
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionfor serializationCancelException(String message) Create instance with given messageCancelException(String message, Throwable cause) Create instance with given message and causeCancelException(Throwable cause) Create instance with empty message and given 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
-
Field Details
-
serialVersionUID
public static final long serialVersionUID- See Also:
-
-
Constructor Details
-
CancelException
public CancelException()for serialization -
CancelException
Create instance with given message- Parameters:
message- the message
-
CancelException
Create instance with given message and cause- Parameters:
message- the messagecause- the cause
-
CancelException
Create instance with empty message and given cause- Parameters:
cause- the cause
-