aboutsummaryrefslogtreecommitdiffstats
path: root/docproc/src/main/java/com/yahoo/docproc/impl/TransientFailureException.java
blob: 424bcb7078f2d582719ef05e09d8edd95197715d (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 com.yahoo.docproc.impl;

/**
 * Exception to be thrown by a document processor on transient failures.
 * Caller is welcome to try the call again later.
 *
 * @author Einar M R Rosenvinge
 */
public class TransientFailureException extends RuntimeException {

    public TransientFailureException(String s) {
        super(s);
    }

}