org.apache.catalina.connector

Class ClientAbortException


public final class ClientAbortException
extends IOException

Wrap an IOException identifying it as being caused by an abort of a request by a remote client.

Version:
$Revision: 1.2 $ $Date: 2004/02/27 14:58:41 $

Author:
Glenn L. Nielsen

Field Summary

protected String
message
The error message passed to our constructor (if any)
protected Throwable
throwable
The underlying exception or error passed to our constructor (if any)

Constructor Summary

ClientAbortException()
Construct a new ClientAbortException with no other information.
ClientAbortException(String message)
Construct a new ClientAbortException for the specified message.
ClientAbortException(String message, Throwable throwable)
Construct a new ClientAbortException for the specified message and throwable.
ClientAbortException(Throwable throwable)
Construct a new ClientAbortException for the specified throwable.

Method Summary

String
getMessage()
Returns the message associated with this exception, if any.
Throwable
getThrowable()
Returns the throwable that caused this exception, if any.
String
toString()
Return a formatted string that describes this exception.

Field Details

message

protected String message
The error message passed to our constructor (if any)


throwable

protected Throwable throwable
The underlying exception or error passed to our constructor (if any)

Constructor Details

ClientAbortException

public ClientAbortException()
Construct a new ClientAbortException with no other information.


ClientAbortException

public ClientAbortException(String message)
Construct a new ClientAbortException for the specified message.

Parameters:
message - Message describing this exception


ClientAbortException

public ClientAbortException(String message,
                            Throwable throwable)
Construct a new ClientAbortException for the specified message and throwable.

Parameters:
message - Message describing this exception
throwable - Throwable that caused this exception


ClientAbortException

public ClientAbortException(Throwable throwable)
Construct a new ClientAbortException for the specified throwable.

Parameters:
throwable - Throwable that caused this exception

Method Details

getMessage

public String getMessage()
Returns the message associated with this exception, if any.


getThrowable

public Throwable getThrowable()
Returns the throwable that caused this exception, if any.


toString

public String toString()
Return a formatted string that describes this exception.


Copyright B) 2000-2003 Apache Software Foundation. All Rights Reserved.