summaryrefslogtreecommitdiffstats
path: root/docproc/src/main/java/com/yahoo/docproc/TransientFailureException.java
blob: a0e49bb4cb27b5863c6a86923bf6cd58580af194 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2016 Yahoo Inc. 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);
    }
}