org.boon.etcd.exceptions.TimeoutException Maven / Gradle / Ivy
The newest version!
package org.boon.etcd.exceptions;
/**
* Created by rhightower on 10/8/14.
*/
public class TimeoutException extends EtcdException {
public TimeoutException() {
}
public TimeoutException(String message) {
super(message);
}
public TimeoutException(String message, Throwable cause) {
super(message, cause);
}
public TimeoutException(Throwable cause) {
super(cause);
}
public TimeoutException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy