Package com.influxdb.v3.client
Class InfluxDBApiException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.influxdb.v3.client.InfluxDBApiException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InfluxDBApiHttpException
The InfluxDBApiException is thrown when an error occurs while interacting with InfluxDB.
- See Also:
-
Constructor Summary
ConstructorDescriptionInfluxDBApiException
(String message) Construct a new InfluxDBApiException with the specified detail message.InfluxDBApiException
(Throwable cause) Construct a new InfluxDBApiException with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InfluxDBApiException
Construct a new InfluxDBApiException with the specified detail message.- Parameters:
message
- the detail message.
-
InfluxDBApiException
Construct a new InfluxDBApiException with the specified cause.- Parameters:
cause
- the cause.
-