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  TIMEOUTexception with
 minor code set to 0 and CompletionStatus set to COMPLETED_NO. | 
| TIMEOUT(int minorCode,
       CompletionStatus completionStatus)Constructs an  TIMEOUTexception with the
 specified minor code and completion status. | 
| TIMEOUT(String detailMessage)Constructs an  TIMEOUTexception with the
 specified message. | 
| TIMEOUT(String detailMessage,
       int minorCode,
       CompletionStatus completionStatus)Constructs an  TIMEOUTexception 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(String detailMessage)
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(String detailMessage, 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. Submit a bug or feature 
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
 Copyright © 1993, 2011, Oracle and/or its affiliates.  All rights reserved.