summaryrefslogtreecommitdiffstats
path: root/metrics-proxy/src/main/java/ai/vespa/metricsproxy/http/application/ApplicationMetricsException.java
blob: 087959d4c73e597065df851966dfc4c13f7a2d39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
 */

package ai.vespa.metricsproxy.http.application;

/**
 * @author gjoranv
 */
class ApplicationMetricsException extends RuntimeException {

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

}