summaryrefslogtreecommitdiffstats
path: root/docproc/src/main/java/com/yahoo/docproc/TransientFailureException.java
blob: 1b633ffd2f14bc56d8368aa2daa25b1c1a08224a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.docproc;

/**
 * Exception to be thrown by a document processor on transient failures. Caller
 * is welcome to try the call again later.
 *
 * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
 */
public class TransientFailureException extends RuntimeException {
    public TransientFailureException(String s) {
        super(s);
    }
}