aboutsummaryrefslogtreecommitdiffstats
path: root/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/InconclusiveTestException.java
blob: 53ac1e97d92e0b4c1ba93a788b784263696d5237 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. 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); }

}