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 SummaryConstructorsConstructorDescriptionCreates 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 SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ClosedConnectionExceptionpublic ClosedConnectionException()Creates a new ClosedConnectionException object and invokes the super constructor.
- 
ClosedConnectionExceptionCreates 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
 
- 
ClosedConnectionExceptionCreates 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.
 
 
-