Class RequestTimeoutException
Signals that a request execution in a clustered environment did not complete in a pre-determined amount of time.
Inherited Members
Namespace: Tangosol.Net
Assembly: Coherence.dll
Syntax
[Serializable]
public class RequestTimeoutException : RequestIncompleteException, IPortableObject, ISerializable
Remarks
For some specific requests this exception could carry a partial execution result.
Constructors
RequestTimeoutException()
Constructs a RequestTimeoutException with no detail message.
Declaration
public RequestTimeoutException()
RequestTimeoutException(Exception)
Construct a RequestTimeoutException from an Exception object.
Declaration
public RequestTimeoutException(Exception e)
Parameters
Type | Name | Description |
---|---|---|
Exception | e | The Exception object. |
RequestTimeoutException(SerializationInfo, StreamingContext)
Construct a RequestTimeoutException class with serialized data.
Declaration
public RequestTimeoutException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | The SerializationInfo that holds the serialized object data about the exception being thrown. |
StreamingContext | context | The StreamingContext that contains contextual information about the source or destination. |
RequestTimeoutException(string)
Constructs a RequestTimeoutException with the specified detail message.
Declaration
public RequestTimeoutException(string s)
Parameters
Type | Name | Description |
---|---|---|
string | s | The string that contains a detailed message. |
RequestTimeoutException(string, Exception)
Construct a RequestTimeoutException from a Exception object and an additional description.
Declaration
public RequestTimeoutException(string s, Exception e)
Parameters
Type | Name | Description |
---|---|---|
string | s | The additional description. |
Exception | e | The Exception object. |