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 and 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.