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

org.kiwiproject.curator.leader.exception.ManagedLeaderLatchException Maven / Gradle / Ivy

Go to download

This is a small library that integrates Apache Curator's Leader Latch recipe into a Dropwizard service.

There is a newer version: 2.3.1
Show newest version
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