org.apache.commons.httpclient
Class IOTimeoutException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.io.IOException
              extended byorg.apache.commons.httpclient.HttpRecoverableException
                  extended byorg.apache.commons.httpclient.HttpTimeoutException
                      extended byorg.apache.commons.httpclient.IOTimeoutException
All Implemented Interfaces:
java.io.Serializable

public class IOTimeoutException
extends HttpTimeoutException

A I/O or network timeout while communicating with an HTTP server.

Since:
2.1
Author:
Laura Werner
See Also:
Serialized Form

Constructor Summary
IOTimeoutException()
          Creates a IOTimeoutException with a null detail message.
IOTimeoutException(java.lang.String message)
          Creates a IOTimeoutException with a specified message.
IOTimeoutException(java.lang.String message, java.lang.Throwable cause)
          Creates a new IOTimeoutException with the specified detail message and cause.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IOTimeoutException

public IOTimeoutException()
Creates a IOTimeoutException with a null detail message.


IOTimeoutException

public IOTimeoutException(java.lang.String message)
Creates a IOTimeoutException with a specified message.

Parameters:
message - The exception detail message

IOTimeoutException

public IOTimeoutException(java.lang.String message,
                          java.lang.Throwable cause)
Creates a new IOTimeoutException with the specified detail message and cause.

Parameters:
message - the exception detail message
cause - the Throwable that caused this exception, or null if the cause is unavailable, unknown, or not a Throwable


Copyright © 2001-2004 Apache Software Foundation. All Rights Reserved.