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

/**
 * @author lulf
 * @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);
    }
}