aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/configserver/orchestrator/OrchestratorNotFoundException.java
blob: a6a54807e5619cd56be910065063089f1334d055 (plain) (blame)
1
2
3
4
5
6
7
8
9
// 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.orchestrator;

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