Package org.apache.geode.cache
Class CacheClosedException
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
org.apache.geode.cache.CacheClosedException
- All Implemented Interfaces:
Serializable
Indicates that the caching system has been closed. Can be thrown from almost any method related
to regions or the
Cache after the cache has been closed.- Since:
- GemFire 3.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newCacheClosedException.Constructs a newCacheClosedExceptionwith a message string.CacheClosedException(String msg, Throwable cause) Constructs a newCacheClosedExceptionwith a message string and a cause.CacheClosedException(Throwable cause) Constructs a newCacheClosedExceptionwith a 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
-
CacheClosedException
public CacheClosedException()Constructs a newCacheClosedException. -
CacheClosedException
Constructs a newCacheClosedExceptionwith a message string.- Parameters:
msg- a message string
-
CacheClosedException
Constructs a newCacheClosedExceptionwith a message string and a cause.- Parameters:
msg- the message stringcause- a causal Throwable
-
CacheClosedException
Constructs a newCacheClosedExceptionwith a cause.- Parameters:
cause- a causal Throwable
-