Class ClusterNotAvailableException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.geode.config.annotation.ClusterNotAvailableException
All Implemented Interfaces:
Serializable

public class ClusterNotAvailableException extends RuntimeException
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:
  • Constructor Details

    • ClusterNotAvailableException

      public ClusterNotAvailableException()
      Constructs a new uninitialized instance of ClusterNotAvailableException.
    • ClusterNotAvailableException

      public ClusterNotAvailableException(String message)
      Constructs a new instance of ClusterNotAvailableException initialized with the given message describing the exception.
      Parameters:
      message - String containing a description of the exception.
    • ClusterNotAvailableException

      public ClusterNotAvailableException(Throwable cause)
      Constructs a new instance of ClusterNotAvailableException initialized with the given Throwable as the cause of this exception.
      Parameters:
      cause - Throwable indicating the cause of this exception.
    • ClusterNotAvailableException

      public ClusterNotAvailableException(String message, 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.
      Parameters:
      message - String containing a description of the exception.
      cause - Throwable indicating the cause of this exception.