io.activej.etcd.exception.EtcdDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activej-etcd Show documentation
Show all versions of activej-etcd Show documentation
Etcd Codecs, and transactional support for ActiveJ project.
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);
}
}