Package com.influxdb.v3.client
Class InfluxDBPartialWriteException.LineError
java.lang.Object
com.influxdb.v3.client.InfluxDBPartialWriteException.LineError
- Enclosing class:
- InfluxDBPartialWriteException
Represents one failed line from a partial write response.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription
-
Constructor Details
-
LineError
public LineError(@Nullable Integer lineNumber, @Nonnull String errorMessage, @Nullable String originalLine) - Parameters:
lineNumber- line number in the write payload; may be null if not provided by servererrorMessage- line-level error messageoriginalLine- original line protocol row; may be null if not provided by server
-
-
Method Details
-
lineNumber
- Returns:
- line number or null if server didn't provide it
-
errorMessage
- Returns:
- line-level error message
-
originalLine
- Returns:
- original line protocol row or null if server didn't provide it
-