aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/configserver/ConfigServerException.java
blob: e957a56c0aecd1988a3ecc59e767fd63a8cb6a85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.configserver;

/**
 * @author hakonhall
 */
public class ConfigServerException extends RuntimeException {
    public ConfigServerException(String message) { super(message); }
    public ConfigServerException(String message, Throwable cause) { super(message, cause); }
}