
io.johnmurray.etcd4j.lock.exceptions.EtcdDirtyLockException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etcd4j-lock Show documentation
Show all versions of etcd4j-lock Show documentation
Distributed locks built on top of the etcd4j library
The newest version!
package io.johnmurray.etcd4j.lock.exceptions;
/**
* Exception to be thrown when the integrity of the lock can no longer be trusted.
*/
public class EtcdDirtyLockException extends EtcdLockException {
public EtcdDirtyLockException() {
super();
}
public EtcdDirtyLockException(String message) {
super(message);
}
public EtcdDirtyLockException(String message, Throwable cause) {
super(message, cause);
}
public EtcdDirtyLockException(Throwable cause) {
super(cause);
}
public EtcdDirtyLockException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy