com.netflix.dyno.connectionpool.exception.PoolTimeoutException Maven / Gradle / Ivy
package com.netflix.dyno.connectionpool.exception;
/**
* Indicates that a thread waiting to obtain a connection from the pool has timed-out while waiting; it's likely
* that all connections are busy servicing requests.
*/
public class PoolTimeoutException extends DynoConnectException implements IsRetryableException {
private static final long serialVersionUID = -8579946319118318717L;
public PoolTimeoutException(String message) {
super(message);
}
public PoolTimeoutException(Throwable t) {
super(t);
}
public PoolTimeoutException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy