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

com.googlecode.jmxtrans.model.ValidationException Maven / Gradle / Ivy

Go to download

JMX metrics exporter. This module creates the packaging for JmxTrans. It does not contain any application code, but creates .deb, .rpm or other packaging.

There is a newer version: 272
Show newest version
package com.googlecode.jmxtrans.model;

public class ValidationException extends Exception {

	private final Query query;

	public ValidationException(String msg, Query query) {
		super(msg);
		this.query = query;
	}

	public Query getQuery() {
		return query;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy