Package io.openlineage.client
Class OpenLineageClientException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.openlineage.client.OpenLineageClientException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
HttpTransportResponseException
public class OpenLineageClientException extends java.lang.RuntimeException
An exception thrown to indicate a client error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OpenLineageClientException(java.lang.String message)
Constructs aOpenLineageClientException
with the messagemessage
.OpenLineageClientException(java.lang.String message, java.lang.Throwable cause)
Constructs aOpenLineageClientException
with the messagemessage
and the causecause
.OpenLineageClientException(java.lang.Throwable cause)
Constructs aOpenLineageClientException
with the causecause
.
-
-
-
Constructor Detail
-
OpenLineageClientException
public OpenLineageClientException(@Nullable java.lang.String message)
Constructs aOpenLineageClientException
with the messagemessage
.
-
OpenLineageClientException
public OpenLineageClientException(@Nullable java.lang.Throwable cause)
Constructs aOpenLineageClientException
with the causecause
.
-
OpenLineageClientException
public OpenLineageClientException(@Nullable java.lang.String message, @Nullable java.lang.Throwable cause)
Constructs aOpenLineageClientException
with the messagemessage
and the causecause
.
-
-