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
public class ServiceStoppedException extends IllegalStateException
Signals that a request was not able to execute because the underlying service has been stopped.- Since:
- Coherence 12.1.3
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceStoppedException()
Constructs a ServiceStoppedException with no detail message.ServiceStoppedException(String s)
Constructs a ServiceStoppedException with the specified detail message.ServiceStoppedException(String s, Throwable e)
Construct a ServiceStoppedException from a Throwable object and an additional description.ServiceStoppedException(Throwable e)
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 Detail
-
ServiceStoppedException
public ServiceStoppedException()
Constructs a ServiceStoppedException with no detail message.
-
ServiceStoppedException
public ServiceStoppedException(String s)
Constructs a ServiceStoppedException with the specified detail message.- Parameters:
s
- the String that contains a detailed message
-
ServiceStoppedException
public ServiceStoppedException(Throwable e)
Construct a ServiceStoppedException from a Throwable object.- Parameters:
e
- the Throwable object
-
-