com.yahoo.vespa.zookeeper.ReconfigException Maven / Gradle / Ivy
// Copyright Verizon Media. 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 in a
* class that can be used without depending 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