summaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/application/ConfigNotConvergedException.java
blob: 513d258170cd056ecd8a6d9526f8782a57b9e212 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.application;

/**
 * @author Ulf Lilleengen
 */
public class ConfigNotConvergedException extends RuntimeException {
    public ConfigNotConvergedException(String message) {
        super(message);
    }
}