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

/**
 * Exception generated by known bad input in a docproc. Will cause only message to be logged,
 * not stacktrace.
 *
 * @author Mathias Mølster Lidal
 */
public class HandledProcessingException extends RuntimeException {

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

}