Gemfire JavaDocs_test
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:
java.io.Serializable
- Direct Known Subclasses:
CacheClosedException
,DistributedSystemDisconnectedException
,ForcedDisconnectException
,FutureCancelledException
,GatewayCancelledException
,OplogCancelledException
,OutOfOffHeapMemoryException
,PoolCancelledException
,TXManagerCancelledException
public abstract class CancelException extends CacheRuntimeException
Abstract root class of all GemFire exceptions representing system cancellation- Since:
- GemFire 6.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description CancelException()
for serializationCancelException(java.lang.String message)
Create instance with given messageCancelException(java.lang.String message, java.lang.Throwable cause)
Create instance with given message and causeCancelException(java.lang.Throwable cause)
Create instance with empty message and given cause
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CancelException
public CancelException()
for serialization
-
CancelException
public CancelException(java.lang.String message)
Create instance with given message- Parameters:
message
- the message
-
CancelException
public CancelException(java.lang.String message, java.lang.Throwable cause)
Create instance with given message and cause- Parameters:
message
- the messagecause
- the cause
-
CancelException
public CancelException(java.lang.Throwable cause)
Create instance with empty message and given cause- Parameters:
cause
- the cause
-
-