io.opentelemetry.contrib.jmxmetrics.ConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-jmx-metrics Show documentation
Show all versions of opentelemetry-jmx-metrics Show documentation
JMX metrics gathering Groovy script runner
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.contrib.jmxmetrics;
public class ConfigurationException extends RuntimeException {
private static final long serialVersionUID = 0L;
public ConfigurationException(final String message, final Throwable cause) {
super(message, cause);
}
public ConfigurationException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy