aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/ApplicationStateChangeDeniedException.java
blob: 67ff3f6d7a3928b276acc597b98ab87c4973a2bc (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.orchestrator;

/**
 * Exception covering all cases where the state change could not
 * be executed.
 *
 * @author smorgrav
 */
public class ApplicationStateChangeDeniedException extends Exception {

    public ApplicationStateChangeDeniedException(String reason) {
        super(reason);
    }

}