Class w3c.jigsaw.http.ClientException
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class w3c.jigsaw.http.ClientException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----w3c.jigsaw.http.ClientException

public class ClientException
extends Exception
ClientException is used to terminate a channel with a specific client. Each client is represented within the server by some Client instance which is used to keep track of it. When such a client context errs severly (ie IO errors, bad HTTP spoken, etc) the connections has to be cleaned up and closed, that's the purpose of this exception.
See Also:
Client

Variable Index

 o client
 o ex

Constructor Index

 o ClientException(Client, Exception)
 o ClientException(Client, String)

Variables

 o client
  public Client client
 o ex
  public Exception ex

Constructors

 o ClientException
  public ClientException(Client client,
                         String msg)
 o ClientException
  public ClientException(Client client,
                         Exception ex)

All Packages  Class Hierarchy  This Package  Previous  Next  Index