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

com.yahoo.vespa.zookeeper.ReconfigException Maven / Gradle / Ivy

There is a newer version: 8.458.13
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.zookeeper;

/**
 * Exception used to wrap zookeeper exception when reconfiguration fails, done to be able
 * to use a class that does not depend on ZooKeeper.
 *
 * @author hmusum
 */
@SuppressWarnings("serial")
public class ReconfigException extends RuntimeException {

    public ReconfigException(Throwable cause) {
        super(cause);
    }

    public ReconfigException(String message) {
        super(message);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy