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

io.github.icodegarden.commons.zookeeper.exception.ZooKeeperException Maven / Gradle / Ivy

package io.github.icodegarden.commons.zookeeper.exception;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public abstract class ZooKeeperException extends RuntimeException {
	private static final long serialVersionUID = 1L;

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

	public ZooKeeperException(Throwable cause) {
		super(cause);
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy