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