All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.dyno.connectionpool.exception.TimeoutException Maven / Gradle / Ivy

package com.netflix.dyno.connectionpool.exception;


public class TimeoutException extends DynoConnectException implements IsRetryableException, IsDeadConnectionException {

	private static final long serialVersionUID = 5025308550262085866L;

	public TimeoutException(String message) {
		super(message);
	}

	public TimeoutException(Throwable t) {
		super(t);
	}

	public TimeoutException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy