aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/configserver/orchestrator/OrchestratorException.java
blob: 472b8f39c05c8fcba322c72a24e3b2b5644c29f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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;

import com.yahoo.vespa.hosted.node.admin.nodeadmin.ConvergenceException;

@SuppressWarnings("serial")
public class OrchestratorException extends ConvergenceException {
    /** Creates a transient convergence exception. */
    public OrchestratorException(String message) {
        this(message, false);
    }

    protected OrchestratorException(String message, boolean isError) {
        super(message, null, isError);
    }
}