aboutsummaryrefslogtreecommitdiffstats
path: root/zkfacade/src/main/java/com/yahoo/vespa/curator/recipes/CuratorLockException.java
blob: 8e62c4c01412164e1c62a8a228f103ca617c9538 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.curator.recipes;

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

    public CuratorLockException(String message, Exception e) {
        super(message, e);
    }

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

    public CuratorLockException(Exception e) {
        super(e);
    }
}