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

com.influxdb.v3.client.InfluxDBApiHttpException Maven / Gradle / Ivy

Go to download

The Java client that provides an easy and convenient way to interact with InfluxDB 3. This package supports both writing data to InfluxDB and querying data using the FlightSQL client, which allows you to execute SQL queries against InfluxDB IOx.

The newest version!
/*
 * The MIT License
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package com.influxdb.v3.client;

import java.net.http.HttpHeaders;
import java.util.List;
import javax.annotation.Nullable;

/**
 * The InfluxDBApiHttpException gets thrown whenever an error status is returned
 * in the HTTP response.  It facilitates recovering from such errors whenever possible.
 */
public class InfluxDBApiHttpException extends InfluxDBApiException {

  HttpHeaders headers;
  int statusCode;

  /**
   * Construct a new InfluxDBApiHttpException with statusCode and headers.
   *
   * @param message the detail message.
   * @param headers headers returned in the response.
   * @param statusCode statusCode of the response.
   */
  public InfluxDBApiHttpException(
    @Nullable final String message,
    @Nullable final HttpHeaders headers,
    final int statusCode) {
    super(message);
    this.headers = headers;
    this.statusCode = statusCode;
  }

  /**
   * Construct a new InfluxDBApiHttpException with statusCode and headers.
   *
   * @param cause root cause of the exception.
   * @param headers headers returned in the response.
   * @param statusCode status code of the response.
   */
  public InfluxDBApiHttpException(
    @Nullable final Throwable cause,
    @Nullable final HttpHeaders headers,
    final int statusCode) {
    super(cause);
    this.headers = headers;
    this.statusCode = statusCode;
  }

  /**
   * Gets the HTTP headers property associated with the error.
   *
   * @return - the headers object.
   */
  public HttpHeaders headers() {
    return headers;
  }

  /**
   * Helper method to simplify retrieval of specific headers.
   *
   * @param name - name of the header.
   * @return - value matching the header key, or null if the key does not exist.
   */
  public List getHeader(final String name) {
    return headers.map().get(name);
  }

  /**
   * Gets the HTTP statusCode associated with the error.
   * @return - the HTTP statusCode.
   */
  public int statusCode() {
    return statusCode;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy