com.jonnymatts.prometheus.http.configuration.ConfigurationParsingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-metrics-core Show documentation
Show all versions of http-metrics-core Show documentation
HTTP metrics exporter for Prometheus
The newest version!
package com.jonnymatts.prometheus.http.configuration;
import static java.lang.String.format;
public class ConfigurationParsingException extends RuntimeException {
public ConfigurationParsingException(String failedConfigBody, Exception e) {
super(format("Could not parse config. Given config: \n %s", failedConfigBody), e);
}
}