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

io.activej.etcd.exception.EtcdDataException Maven / Gradle / Ivy

The newest version!
package io.activej.etcd.exception;

public class EtcdDataException extends EtcdException {
	public EtcdDataException(String message) {
		super(message);
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy