aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/application/ConfigNotConvergedException.java
blob: 4fe8dc0866c7fdfd97e8d3c3c6a7b5a90e4512f2 (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 Ulf Lilleengen
 */
public class ConfigNotConvergedException extends RuntimeException {

    public ConfigNotConvergedException(Throwable t) {
        super(t);
    }

}