aboutsummaryrefslogtreecommitdiffstats
path: root/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/InconclusiveTestException.java
blob: cfb01d83cdbb4909a53a90c7e6a7328cac9e69e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.hosted.cd;


/**
 * Signals that a test method can not yield a conclusive result at this time, and must be retried later.
 *
 * @author jonmv
 */
public class InconclusiveTestException extends RuntimeException {

    public InconclusiveTestException() { super(); }

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

}