Class ClusterNotAvailableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.geode.config.annotation.ClusterNotAvailableException
- All Implemented Interfaces:
Serializable
The
ClusterNotAvailableException
is a RuntimeException
indicating that no Apache Geode cluster
was provisioned and available to service Apache Geode ClientCache
applications.- Since:
- 1.0.0
- See Also:
-
RuntimeException
ClientCache
- Serialized Form
-
Constructor Summary
ConstructorDescriptionConstructs a new uninitialized instance ofClusterNotAvailableException
.ClusterNotAvailableException
(String message) Constructs a new instance ofClusterNotAvailableException
initialized with the givenmessage
describing the exception.ClusterNotAvailableException
(String message, Throwable cause) Constructs a new instance ofClusterNotAvailableException
initialized with the givenmessage
describing the exception along with the givenThrowable
as the cause of this exception.Constructs a new instance ofClusterNotAvailableException
initialized with the givenThrowable
as the cause of this exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ClusterNotAvailableException
public ClusterNotAvailableException()Constructs a new uninitialized instance ofClusterNotAvailableException
. -
ClusterNotAvailableException
Constructs a new instance ofClusterNotAvailableException
initialized with the givenmessage
describing the exception.- Parameters:
message
-String
containing a description of the exception.
-
ClusterNotAvailableException
Constructs a new instance ofClusterNotAvailableException
initialized with the givenThrowable
as the cause of this exception.- Parameters:
cause
-Throwable
indicating the cause of this exception.
-
ClusterNotAvailableException
Constructs a new instance ofClusterNotAvailableException
initialized with the givenmessage
describing the exception along with the givenThrowable
as the cause of this exception.
-