Package org.apache.http.conn
Class ConnectionPoolTimeoutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.io.InterruptedIOException
-
- org.apache.http.conn.ConnectTimeoutException
-
- org.apache.http.conn.ConnectionPoolTimeoutException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConnectionPoolTimeoutException extends ConnectTimeoutException
A timeout while waiting for an available connection from a connection manager.- Since:
- 4.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConnectionPoolTimeoutException()
Creates a ConnectTimeoutException with anull
detail message.ConnectionPoolTimeoutException(java.lang.String message)
Creates a ConnectTimeoutException with the specified detail message.
-
Method Summary
-
Methods inherited from class org.apache.http.conn.ConnectTimeoutException
getHost
-
-
-
-
Constructor Detail
-
ConnectionPoolTimeoutException
public ConnectionPoolTimeoutException()
Creates a ConnectTimeoutException with anull
detail message.
-
ConnectionPoolTimeoutException
public ConnectionPoolTimeoutException(java.lang.String message)
Creates a ConnectTimeoutException with the specified detail message.- Parameters:
message
- The exception detail message
-
-