public final class TIMEOUT extends SystemException
TIMEOUT is raised when no delivery has been made and the specified time-to-live period has been exceeded. It is a standard system exception because time-to-live QoS can be applied to any invocation.
completed, minor| Constructor and Description |
|---|
TIMEOUT()
Constructs an
TIMEOUT exception with minor code set to 0 and CompletionStatus set to COMPLETED_NO.
|
TIMEOUT(int minorCode, CompletionStatus
Constructs an
TIMEOUT exception with the specified minor code and completion status.
|
TIMEOUT(String
Constructs an
TIMEOUT exception with the specified message.
|
TIMEOUT(String
Constructs an
TIMEOUT exception with the specified message, minor code, and completion status.
|
toStringaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTracepublic TIMEOUT()
TIMEOUT exception with minor code set to 0 and CompletionStatus set to COMPLETED_NO.
public TIMEOUT(StringdetailMessage)
TIMEOUT exception with the specified message.
detailMessage - string containing a detailed message.
public TIMEOUT(int minorCode,
CompletionStatus completionStatus)
TIMEOUT exception with the specified minor code and completion status.
minorCode - minor code.
completionStatus - completion status.
public TIMEOUT(StringdetailMessage, int minorCode, CompletionStatus completionStatus)
TIMEOUT exception with the specified message, minor code, and completion status.
detailMessage - string containing a detailed message.
minorCode - minor code.
completionStatus - completion status.