summaryrefslogtreecommitdiffstats
path: root/vespa-feed-client/src/main/java/ai/vespa/feed/client/JsonParseException.java
blob: 8edf74ec275eebcd86dc184c17a43fa715903948 (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 is invalid
 *
 * @author bjorncs
 */
public class JsonParseException extends FeedException {

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

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

}