Package org.apache.geode.distributed
Class LockServiceDestroyedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
org.apache.geode.distributed.LockServiceDestroyedException
- All Implemented Interfaces:
Serializable
A
LockServiceDestroyedException is thrown when attempting use a distributed lock
service that has been destroyed.- Since:
- GemFire 4.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnullas its detail message.LockServiceDestroyedException(String message) Constructs a new exception with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
LockServiceDestroyedException
public LockServiceDestroyedException()Constructs a new exception withnullas its detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable). -
LockServiceDestroyedException
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-