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

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