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

com.eventstore.dbclient.NotLeaderException Maven / Gradle / Ivy

package com.eventstore.dbclient;

public class NotLeaderException extends Exception {
    private Endpoint leaderEndpoint;

    public NotLeaderException(String host, int port) {
        leaderEndpoint = new Endpoint(host, port);
    }

    public Endpoint getLeaderEndpoint() {
        return leaderEndpoint;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy