aboutsummaryrefslogtreecommitdiffstats
path: root/docproc/src/main/java/com/yahoo/docproc/HandledProcessingException.java
blob: 0f2065c4be8937a97d8a69d26bffaccbb3fe058d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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 generated by known bad input in a docproc. Will cause only message to be logged,
 * not stacktrace.
 *
 * @author <a href="mailto:mathiasm@yahoo-inc.com">Mathias M\u00F8lster Lidal</a>
 */
public class HandledProcessingException extends RuntimeException {

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