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:
Serializable
- Direct Known Subclasses:
UncreatedSystemException,UnstartedSystemException
A
NoSystemException is thrown when a locator can not be found or connected to. In
most cases one of the following subclasses is used instead of NoSystemException:
As of GemFire 5.0 this exception should be named NoLocatorException.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNoSystemException(String message) Creates a newNoSystemException.NoSystemException(String message, Throwable cause) Creates a newNoSystemExceptionwith 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
-
NoSystemException
Creates a newNoSystemException.- Parameters:
message- the detail message
-
NoSystemException
Creates a newNoSystemExceptionwith the given message and cause.- Parameters:
message- the detail messagecause- the cause
-