Package org.apache.geode.cache.client
Class ClientNotReadyException
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
org.apache.geode.cache.client.ClientNotReadyException
- All Implemented Interfaces:
Serializable
Deprecated.
as of 6.5 this exception is no longer thrown by GemFire so any code that catches it
should be removed.
A
ClientNotReadyException indicates a client attempted to invoke the
Cache.readyForEvents() method, but failed.
This exception was moved from the util package in 5.7.
- Since:
- GemFire 5.7
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Constructs an instance ofClientNotReadyExceptionwith the specified detail message.ClientNotReadyException(String msg, Throwable cause) Deprecated.Constructs an instance ofClientNotReadyExceptionwith the specified detail message and 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
-
ClientNotReadyException
Deprecated.Constructs an instance ofClientNotReadyExceptionwith the specified detail message.- Parameters:
msg- the detail message
-
ClientNotReadyException
Deprecated.Constructs an instance ofClientNotReadyExceptionwith the specified detail message and cause.- Parameters:
msg- the detail messagecause- the causal Throwable
-