Gemfire JavaDocs
Package org.apache.geode
Class NoSystemException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.NoSystemException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
UncreatedSystemException
,UnstartedSystemException
public class NoSystemException extends GemFireException
ANoSystemException
is thrown when a locator can not be found or connected to. In most cases one of the following subclasses is used instead ofNoSystemException
:As of GemFire 5.0 this exception should be named NoLocatorException.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoSystemException(java.lang.String message)
Creates a newNoSystemException
.NoSystemException(java.lang.String message, java.lang.Throwable cause)
Creates a newNoSystemException
with the given message and cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
NoSystemException
public NoSystemException(java.lang.String message)
Creates a newNoSystemException
.- Parameters:
message
- the detail message
-
NoSystemException
public NoSystemException(java.lang.String message, java.lang.Throwable cause)
Creates a newNoSystemException
with the given message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
-