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

org.influxdb.InfluxDBIOException Maven / Gradle / Ivy

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy