aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/restapiv2/MissingIdException.java
blob: 18a3b923908d7425e02e996e9455a67da4c927b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core.restapiv2;

import com.yahoo.vdslib.state.Node;
import com.yahoo.vespa.clustercontroller.utils.staterestapi.errors.MissingUnitException;

import java.util.List;

public class MissingIdException extends MissingUnitException {

    private static List<String> createPath(String cluster, Node n) {
        return List.of(cluster, n.getType().toString(), String.valueOf(n.getIndex()));
    }

    public MissingIdException(String cluster, Node n) {
        super(createPath(cluster, n), 2);
    }

}