org.influxdb.BuilderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of influxdb-java Show documentation
Show all versions of influxdb-java Show documentation
Java API to access the InfluxDB REST API
package org.influxdb;
/**
* Class for exceptions when using Point Builder.
*
* @author mirza99
*/
public class BuilderException extends RuntimeException {
/**
* Generated serial version UID.
*/
private static final long serialVersionUID = 4178882805281378918L;
public BuilderException(final String message) {
super(message);
}
}