Package org.apache.geode
Class UnstartedSystemException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.GemFireException
org.apache.geode.NoSystemException
org.apache.geode.UnstartedSystemException
- All Implemented Interfaces:
Serializable
An
UnstartedSystemException is thrown when the specified locator exists but is not
running or could not be connected to.
The most likely reasons for this are:
- The locator has not completely started.
- The locator is stopping.
- The locator died or was killed.
As of GemFire 5.0 this exception should be named UnstartedLocatorException.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnstartedSystemException(String message) Creates a newUnstartedSystemException.UnstartedSystemException(String message, Throwable cause) Creates a newUnstartedSystemExceptionwith the given message and cause. -
Method Summary
Methods 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, toString
-
Constructor Details
-
UnstartedSystemException
Creates a newUnstartedSystemException.- Parameters:
message- the detail message
-
UnstartedSystemException
Creates a newUnstartedSystemExceptionwith the given message and cause.- Parameters:
message- the detail messagecause- the cause
-