com.github.ltsopensource.zookeeper.lts.ZkInterruptedException Maven / Gradle / Ivy
package com.github.ltsopensource.zookeeper.lts;
/**
* @author Robert HG ([email protected]) on 2/18/16.
*/
public class ZkInterruptedException extends ZkException {
public ZkInterruptedException() {
super();
}
public ZkInterruptedException(String message) {
super(message);
}
public ZkInterruptedException(String message, Throwable cause) {
super(message, cause);
}
public ZkInterruptedException(Throwable cause) {
super(cause);
}
}