Package org.apache.geode
Class UncreatedSystemException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.GemFireException
org.apache.geode.NoSystemException
org.apache.geode.UncreatedSystemException
- All Implemented Interfaces:
Serializable
An
UncreatedSystemException is thrown when the specified locator's directory or
configuration file can not be found.
The most likely reasons for this are:
- The wrong locator directory was given.
- The locator was deleted or never created.
As of GemFire 5.0 this exception should be named UncreatedLocatorException.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUncreatedSystemException(String message) Creates a newUncreatedSystemException.UncreatedSystemException(String message, Throwable cause) Creates a newUncreatedSystemExceptionwith 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
-
UncreatedSystemException
Creates a newUncreatedSystemException.- Parameters:
message- the detail message
-
UncreatedSystemException
Creates a newUncreatedSystemExceptionwith the given message and cause.- Parameters:
message- the detail messagecause- the cause
-