summaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/orchestrator/OrchestratorNotFoundException.java
blob: 088152bd7a36a8383ad6de8a251e474210b566ea (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.orchestrator;

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