ibis.ipl
Class ConnectionClosedException

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

public class ConnectionClosedException
extends IbisIOException

Signals that a connection has been closed. A ConnectionClosedException is thrown to indicate that an input or output operation has been terminated because the connection was broken.

See Also:
Serialized Form

Constructor Summary
ConnectionClosedException()
          Constructs a ConnectionClosedException with null as its error detail message.
ConnectionClosedException(java.lang.String s)
          Constructs a ConnectionClosedException with the specified detail message.
ConnectionClosedException(java.lang.String s, java.lang.Throwable cause)
          Constructs a ConnectionClosedException with the specified detail message and cause.
ConnectionClosedException(java.lang.Throwable cause)
          Constructs a ConnectionClosedException 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

ConnectionClosedException

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


ConnectionClosedException

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

Parameters:
s - the detail message

ConnectionClosedException

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

Parameters:
s - the detail message
cause - the cause

ConnectionClosedException

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

Parameters:
cause - the cause


The Ibis project