Package com.ibm.wsspi.webcontainer
Class ClosedConnectionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.ibm.wsspi.webcontainer.ClosedConnectionException
-
- All Implemented Interfaces:
java.io.Serializable
public class ClosedConnectionException extends java.io.IOException
This class is a subclass of IOException used to differentiate when a client prematurely terminates a connection to the server from other IOExceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClosedConnectionException()
Creates a new ClosedConnectionException object and invokes the super constructor.ClosedConnectionException(java.lang.String s)
Creates a new ClosedConnectionException object with an exception string and invokes the super constructor with the string.ClosedConnectionException(java.lang.String s, java.lang.Throwable t)
Creates a new ClosedConnectionException object with an exception string and root cause, invokes the super constructor with the string, and sets initCause to the root cause.
-
-
-
Constructor Detail
-
ClosedConnectionException
public ClosedConnectionException()
Creates a new ClosedConnectionException object and invokes the super constructor.
-
ClosedConnectionException
public ClosedConnectionException(java.lang.String s)
Creates a new ClosedConnectionException object with an exception string and invokes the super constructor with the string.- Parameters:
s
- The message string to set in this exception
-
ClosedConnectionException
public ClosedConnectionException(java.lang.String s, java.lang.Throwable t)
Creates a new ClosedConnectionException object with an exception string and root cause, invokes the super constructor with the string, and sets initCause to the root cause.- Parameters:
s
- The message string to set in this exception.writeStatusCode
- The write status code.
-
-