summaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/ApplicationIdNotFoundException.java
blob: 486986858941c5fbe1d2447cc3315af98a7a462f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2016 Yahoo Inc. 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);
    }

}