Package com.tangosol.net
Class ServiceStoppedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
com.tangosol.net.ServiceStoppedException
- All Implemented Interfaces:
Serializable
Signals that a request was not able to execute because the underlying service
has been stopped.
- Since:
- Coherence 12.1.3
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a ServiceStoppedException with no detail message.Constructs a ServiceStoppedException with the specified detail message.Construct a ServiceStoppedException from a Throwable object and an additional description.Construct a ServiceStoppedException from a Throwable object. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ServiceStoppedException
public ServiceStoppedException()Constructs a ServiceStoppedException with no detail message. -
ServiceStoppedException
Constructs a ServiceStoppedException with the specified detail message.- Parameters:
s
- the String that contains a detailed message
-
ServiceStoppedException
Construct a ServiceStoppedException from a Throwable object.- Parameters:
e
- the Throwable object
-
ServiceStoppedException
Construct a ServiceStoppedException from a Throwable object and an additional description.- Parameters:
s
- the additional descriptione
- the Throwable object
-