org.influxdb.InfluxDBIOException 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;
import java.io.IOException;
/**
* A wrapper for {@link IOException} caused while interacting with InfluxDB.
*
* @author Simon Legner
*/
public class InfluxDBIOException extends InfluxDBException {
public InfluxDBIOException(final IOException cause) {
super(cause);
}
}