public class ClusterNotAvailableException
extends java.lang.RuntimeException
ClusterNotAvailableException
is a RuntimeException
indicating that no Apache Geode cluster
was provisioned and available to service Apache Geode ClientCache
applications.RuntimeException
,
ClientCache
,
Serialized FormConstructor and Description |
---|
ClusterNotAvailableException()
Constructs a new uninitialized instance of
ClusterNotAvailableException . |
ClusterNotAvailableException(java.lang.String message)
Constructs a new instance of
ClusterNotAvailableException initialized with
the given message describing the exception. |
ClusterNotAvailableException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new instance of
ClusterNotAvailableException initialized with
the given message describing the exception along with the given Throwable
as the cause of this exception. |
ClusterNotAvailableException(java.lang.Throwable cause)
Constructs a new instance of
ClusterNotAvailableException initialized with
the given Throwable as the cause of this exception. |
public ClusterNotAvailableException()
ClusterNotAvailableException
.public ClusterNotAvailableException(java.lang.String message)
ClusterNotAvailableException
initialized with
the given message
describing the exception.message
- String
containing a description of the exception.public ClusterNotAvailableException(java.lang.Throwable cause)
ClusterNotAvailableException
initialized with
the given Throwable
as the cause of this exception.cause
- Throwable
indicating the cause of this exception.public ClusterNotAvailableException(java.lang.String message, java.lang.Throwable cause)
ClusterNotAvailableException
initialized with
the given message
describing the exception along with the given Throwable
as the cause of this exception.message
- String
containing a description of the exception.cause
- Throwable
indicating the cause of this exception.