FileDocCategorySizeDatePackage
TIMEOUT.javaAPI DocJava SE 6 API1998Tue Jun 10 00:27:26 BST 2008org.omg.CORBA

TIMEOUT

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.
see
documentation on Java IDL exceptions
version
1.0, 03/05/2004
since
J2SE 1.5

Fields Summary
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.

param
detailMessage string containing a detailed 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.

param
minorCode minor code.
param
completionStatus 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.

param
detailMessage string containing a detailed message.
param
minorCode minor code.
param
completionStatus completion status.

        super(detailMessage, minorCode, completionStatus);
    
Methods Summary