TIMEOUTpublic 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. |
Constructors Summary |
---|
public TIMEOUT()Constructs an TIMEOUT exception with
minor code set to 0 and CompletionStatus set to COMPLETED_NO.
this("");
| public TIMEOUT(String detailMessage)Constructs an TIMEOUT exception with the
specified message.
this(detailMessage, 0, CompletionStatus.COMPLETED_NO);
| public TIMEOUT(int minorCode, CompletionStatus completionStatus)Constructs an TIMEOUT exception with the
specified minor code and completion status.
this("", minorCode, completionStatus);
| public TIMEOUT(String detailMessage, int minorCode, CompletionStatus completionStatus)Constructs an TIMEOUT exception with the
specified message, minor code, and completion status.
super(detailMessage, minorCode, completionStatus);
|
|