summaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/nodeadmin/ConvergenceException.java
blob: 16a5eb022adabc878549ae08e7100bd4fc74a901 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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.nodeadmin;

/**
 * Exception specially handled to avoid dumping full stack trace on convergence failure.
 *
 * @author hakonhall
 */
@SuppressWarnings("serial")
public class ConvergenceException extends RuntimeException {
    public ConvergenceException(String message) {
        super(message);
    }

    public ConvergenceException(String message, Throwable t) {
        super(message, t);
    }
}