public final class TimeoutException extends NetException
| Constructor and Description |
|---|
TimeoutException()
Constructs a new
TimeoutException with "null" as its
detail message. |
TimeoutException(String message)
Constructs a new
TimeoutException with the specified detail
message. |
TimeoutException(String message,
Throwable cause)
Constructs a new
TimeoutException with the specified detail
message and cause. |
TimeoutException(Throwable cause)
Constructs a new
TimeoutException with the specified cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic TimeoutException()
TimeoutException with "null" as its
detail message. The cause is not initialized, and may subsequently be
initialized by a call to the "initCause" method.public TimeoutException(String message)
TimeoutException with the specified detail
message. The cause is not initialized, and may subsequently be
initialized by a call to "initCause" method.message - the detail message, which is saved for later retrieval by
the "getMessage()" method.public TimeoutException(Throwable cause)
TimeoutException with the specified cause. The detail message is of this exception is computed by the
expression "(cause==null ? null : cause.toString())", which typically
contains the class name and message of cause.cause - the cause, which is saved for later retrieval by the "
getCause()" method. A null value is
permitted, and indicates that the cause is nonexistent or unknown.public TimeoutException(String message, Throwable cause)
TimeoutException with the specified detail
message and cause. Note that the detail message
associated with cause is not automatically incorporated in this
exception's detail message.message - the detail message, which is saved for later retrieval by
the "getMessage()" method.cause - the cause, which is saved for later retrieval by the "
getCause()" method. A null value is
permitted, and indicates that the cause is nonexistent or unknown.Copyright © OBCOM INGENIERIA S.A. (Chile). All Rights Reserved.