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