Package com.tangosol.net
Class RequestTimeoutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.tangosol.io.pof.PortableException
-
- com.tangosol.net.RequestIncompleteException
-
- com.tangosol.net.RequestTimeoutException
-
- All Implemented Interfaces:
PortableObject
,SerializationSupport
,Serializable
public class RequestTimeoutException extends RequestIncompleteException
Signals that a request execution in a distributed environment did not complete in a pre-determined amount of time. For some specific requests this exception could carry a partial execution result.- Since:
- Coherence 3.3
- Author:
- gg 2006.11.02
- See Also:
PriorityTask
, Serialized Form
-
-
Field Summary
-
Fields inherited from class com.tangosol.io.pof.PortableException
m_asStackRemote, m_sMessage, m_sName
-
-
Constructor Summary
Constructors Constructor Description RequestTimeoutException()
Constructs a RequestTimeoutException with no detail message.RequestTimeoutException(String s)
Constructs a RequestTimeoutException with the specified detail message.RequestTimeoutException(String s, Throwable e)
Construct a RequestTimeoutException from a Throwable object and an additional description.RequestTimeoutException(Throwable e)
Construct a RequestTimeoutException from a Throwable object.
-
Method Summary
-
Methods inherited from class com.tangosol.net.RequestIncompleteException
getPartialResult, readExternal, setPartialResult, writeExternal
-
Methods inherited from class com.tangosol.io.pof.PortableException
getFullStackTrace, getMessage, getName, printStackTrace, printStackTrace, readResolve, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.tangosol.io.SerializationSupport
writeReplace
-
-
-
-
Constructor Detail
-
RequestTimeoutException
public RequestTimeoutException()
Constructs a RequestTimeoutException with no detail message.
-
RequestTimeoutException
public RequestTimeoutException(String s)
Constructs a RequestTimeoutException with the specified detail message.- Parameters:
s
- the String that contains a detailed message
-
RequestTimeoutException
public RequestTimeoutException(Throwable e)
Construct a RequestTimeoutException from a Throwable object.- Parameters:
e
- the Throwable object
-
-