summaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/configserver/orchestrator/OrchestratorException.java
blob: fe19da0c41ce6cbd8ea75291d7df5783a7120b65 (plain) (blame)
1
2
3
4
5
6
7
8
9
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.configserver.orchestrator;

@SuppressWarnings("serial")
public class OrchestratorException extends RuntimeException {
    public OrchestratorException(String message) {
        super(message);
    }
}