All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.metricssampler.reader.OpenMetricsReaderException Maven / Gradle / Ivy

The newest version!
package org.metricssampler.reader;

/**
 * Exception thrown when opening a metrics reader.
 */
public class OpenMetricsReaderException extends MetricReadException {
	private static final long serialVersionUID = 1L;

	public OpenMetricsReaderException(final String msg) {
		super(msg);
	}

	public OpenMetricsReaderException(final Throwable t) {
		super(t);
	}

	public OpenMetricsReaderException(final String msg, final Throwable t) {
		super(msg, t);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy