aboutsummaryrefslogtreecommitdiffstats
path: root/zkfacade/src/main/java/com/yahoo/vespa/curator/CompletionTimeoutException.java
blob: 7c861bfeb3a4fa59d92eb5cf502789dc4cddd3e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.curator;

/**
 * @author Ulf Lilleengen
 * @since 5.1
 */
public class CompletionTimeoutException extends RuntimeException {

    public CompletionTimeoutException(String errorMessage) {
        super(errorMessage);
    }

}