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
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:
-
Field Summary
Fields inherited from class com.tangosol.io.pof.PortableException
m_asStackRemote, m_sMessage, m_sName
-
Constructor Summary
ConstructorDescriptionConstructs a RequestTimeoutException with no detail message.Constructs a RequestTimeoutException with the specified detail message.Construct a RequestTimeoutException from a Throwable object and an additional description.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 Details
-
RequestTimeoutException
public RequestTimeoutException()Constructs a RequestTimeoutException with no detail message. -
RequestTimeoutException
Constructs a RequestTimeoutException with the specified detail message.- Parameters:
s
- the String that contains a detailed message
-
RequestTimeoutException
Construct a RequestTimeoutException from a Throwable object.- Parameters:
e
- the Throwable object
-
RequestTimeoutException
Construct a RequestTimeoutException from a Throwable object and an additional description.- Parameters:
s
- the additional descriptione
- the Throwable object
-