aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/configserver/ConfigServerException.java
blob: 369a1c93dc4bff04839c99d20c5cbe0b8315e702 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Yahoo. 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); }
}