aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/ApplicationIdNotFoundException.java
blob: 503a6ede6863ca0988134ee4387d445a8e6c9e95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator;

/**
 * Thrown when applicationId is invalid or not found.
 *
 * @author smorgrav
 */
public class ApplicationIdNotFoundException extends Exception {

    public ApplicationIdNotFoundException() {
        super();
    }

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

}