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:
Serializable
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:
-
Constructor Summary
ConstructorDescriptionCreates a new ClosedConnectionException object and invokes the super constructor.Creates a new ClosedConnectionException object with an exception string and invokes the super constructor with the string.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. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ClosedConnectionException
public ClosedConnectionException()Creates a new ClosedConnectionException object and invokes the super constructor. -
ClosedConnectionException
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
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.
-