Gemfire JavaDocs_test
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:
java.io.Serializable
public class UnstartedSystemException extends NoSystemException
AnUnstartedSystemException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnstartedSystemException(java.lang.String message)
Creates a newUnstartedSystemException
.UnstartedSystemException(java.lang.String message, java.lang.Throwable cause)
Creates a newUnstartedSystemException
with the given message and cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
UnstartedSystemException
public UnstartedSystemException(java.lang.String message)
Creates a newUnstartedSystemException
.- Parameters:
message
- the detail message
-
UnstartedSystemException
public UnstartedSystemException(java.lang.String message, java.lang.Throwable cause)
Creates a newUnstartedSystemException
with the given message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
-