ibis.ipl
Class ReceiveTimedOutException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.io.IOException
              extended byibis.ipl.IbisIOException
                  extended byibis.ipl.ReceiveTimedOutException
All Implemented Interfaces:
java.io.Serializable

public class ReceiveTimedOutException
extends IbisIOException

Signals a timeout in a ReceivePort.receive(long) invocation. This exception is thrown when, during an invocation of one of the receive() variants with a timeout, the timeout expires.

See Also:
Serialized Form

Constructor Summary
ReceiveTimedOutException()
          Constructs a ReceiveTimedOutException with null as its error detail message.
ReceiveTimedOutException(java.lang.String s)
          Constructs a ReceiveTimedOutException with the specified detail message.
ReceiveTimedOutException(java.lang.String s, java.lang.Throwable cause)
          Constructs a ReceiveTimedOutException with the specified detail message and cause.
ReceiveTimedOutException(java.lang.Throwable cause)
          Constructs a ReceiveTimedOutException with the specified cause.
 
Methods inherited from class ibis.ipl.IbisIOException
getCause, getMessage, initCause, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ReceiveTimedOutException

public ReceiveTimedOutException()
Constructs a ReceiveTimedOutException with null as its error detail message.


ReceiveTimedOutException

public ReceiveTimedOutException(java.lang.String s)
Constructs a ReceiveTimedOutException with the specified detail message.

Parameters:
s - the detail message

ReceiveTimedOutException

public ReceiveTimedOutException(java.lang.String s,
                                java.lang.Throwable cause)
Constructs a ReceiveTimedOutException with the specified detail message and cause.

Parameters:
s - the detail message
cause - the cause

ReceiveTimedOutException

public ReceiveTimedOutException(java.lang.Throwable cause)
Constructs a ReceiveTimedOutException with the specified cause.

Parameters:
cause - the cause


The Ibis project