summaryrefslogtreecommitdiffstats
path: root/vespa-feed-client/src/main/java/ai/vespa/feed/client/OperationParseException.java
blob: 15ba024bb4e64f2903dbb401e0e6185775fd3b66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.feed.client;

/**
 * Signals that supplied JSON for a document/operation is invalid
 *
 * @author bjorncs
 */
public class OperationParseException extends FeedException {

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

    public OperationParseException(String message, Throwable cause) { super(message, cause); }

}