aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-utils/src/main/java/com/yahoo/vespa/clustercontroller/utils/staterestapi/errors/UnknownMasterException.java
blob: 0f85f8f40fe3f0c29b4043489da0b75a538484df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.utils.staterestapi.errors;

public class UnknownMasterException extends NotMasterException {

    public UnknownMasterException(String message) {
        super(message);
    }

    public UnknownMasterException() {
        super("No known master cluster controller currently exists.");
    }

}