aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/application/VersionDoesNotExistException.java
blob: 73944823fea0eafa8e3ac431402c79cafe09e456 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.application;

/**
 * @author Vegard Sjonfjell
 */
public final class VersionDoesNotExistException extends RuntimeException {

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

}