summaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/configserver/noderepository/NodeRepositoryException.java
blob: a0b0499bb1ec18681c35c99946dd80369eec44d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.configserver.noderepository;

import com.yahoo.vespa.hosted.node.admin.nodeadmin.ConvergenceException;

public class NodeRepositoryException extends ConvergenceException {
    public NodeRepositoryException(String message) {
        super(message);
    }

    public NodeRepositoryException(String message, Exception exception) {
        super(message, exception);
    }
}