aboutsummaryrefslogtreecommitdiffstats
path: root/metrics-proxy/src/main/java/ai/vespa/metricsproxy/metric/model/json/JsonRenderingException.java
blob: c58cda27c9b2ec3f79c3f0588192d14083184be0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.metricsproxy.metric.model.json;

/**
 * An unchecked exception to be thrown upon errors in json rendering.
 *
 * @author gjoranv
 */
public class JsonRenderingException extends RuntimeException {

    JsonRenderingException(String message, Throwable cause) {
        super(message, cause);
    }

}