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

io.openlineage.client.OpenLineageClientException Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
/*
/* Copyright 2018-2023 contributors to the OpenLineage project
/* SPDX-License-Identifier: Apache-2.0
*/

package io.openlineage.client;

import javax.annotation.Nullable;
import lombok.NoArgsConstructor;

/** An exception thrown to indicate a client error. */
@NoArgsConstructor
public class OpenLineageClientException extends RuntimeException {
  private static final long serialVersionUID = 1L;

  /** Constructs a {@code OpenLineageClientException} with the message {@code message}. */
  public OpenLineageClientException(@Nullable final String message) {
    super(message);
  }

  /** Constructs a {@code OpenLineageClientException} with the cause {@code cause}. */
  public OpenLineageClientException(@Nullable final Throwable cause) {
    super(cause);
  }

  /**
   * Constructs a {@code OpenLineageClientException} with the message {@code message} and the cause
   * {@code cause}.
   */
  public OpenLineageClientException(
      @Nullable final String message, @Nullable final Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy