ConnectionPoolTimeoutExceptionpublic class ConnectionPoolTimeoutException extends ConnectTimeoutException A timeout while waiting for an available connection
from a connection manager. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public ConnectionPoolTimeoutException()Creates a ConnectTimeoutException with a null detail message.
super();
| public ConnectionPoolTimeoutException(String message)Creates a ConnectTimeoutException with the specified detail message.
super(message);
|
|