org.kiwiproject.curator.leader.exception.ManagedLeaderLatchException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-leader-latch Show documentation
Show all versions of dropwizard-leader-latch Show documentation
This is a small library that integrates Apache Curator's Leader Latch recipe into a Dropwizard service.
package org.kiwiproject.curator.leader.exception;
/**
* Exception that is thrown when there is some unexpected error relating to a managed Curator leader latch.
*/
public class ManagedLeaderLatchException extends RuntimeException {
public ManagedLeaderLatchException() {
}
public ManagedLeaderLatchException(String message) {
super(message);
}
public ManagedLeaderLatchException(String message, Throwable cause) {
super(message, cause);
}
public ManagedLeaderLatchException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy