Class InfluxDBPartialWriteException

All Implemented Interfaces:
Serializable

public class InfluxDBPartialWriteException extends InfluxDBApiHttpException
HTTP exception for partial write errors returned by InfluxDB 3 write endpoint. Contains parsed line-level write errors so callers can decide how to handle failed lines.
See Also:
  • Constructor Details

    • InfluxDBPartialWriteException

      public InfluxDBPartialWriteException(@Nullable String message, @Nullable HttpHeaders headers, int statusCode, @Nonnull List<InfluxDBPartialWriteException.LineError> lineErrors)
      Construct a new InfluxDBPartialWriteException.
      Parameters:
      message - detail message
      headers - response headers
      statusCode - response status code
      lineErrors - line-level errors parsed from response body
  • Method Details