Class OpenLineageException

All Implemented Interfaces:
Serializable

public class OpenLineageException extends OCFCheckedExceptionBase
OpenLineageException provides a checked exception for reporting errors found when using the Open Lineage services. Typically, these errors are either configuration or operational errors that can be fixed by an administrator or power Open LineageConsumerInterface. However, there may be the odd bug that surfaces here. The OpenLineageErrorCode can be used with this exception to populate it with standard messages. The aim is to be able to uniquely identify the cause and remedy for the error.
See Also:
  • Constructor Details

    • OpenLineageException

      public OpenLineageException(int httpCode, String className, String actionDescription, String errorMessage, String systemAction, String userAction)
      Parameters:
      httpCode - - http response code to use if this exception flows over a rest call
      className - - name of class reporting error
      actionDescription - - description of function it was performing when error detected
      errorMessage - - description of error
      systemAction - - actions of the system as a result of the error
      userAction - - instructions for correcting the error
    • OpenLineageException

      public OpenLineageException(int httpCode, String className, String actionDescription, String errorMessage, String systemAction, String userAction, Throwable caughtError)
      This is the constructor used for creating a ConnectionCheckedException that resulted from a previous error.
      Parameters:
      httpCode - - http response code to use if this exception flows over a rest call
      className - - name of class reporting error
      actionDescription - - description of function it was performing when error detected
      errorMessage - - description of error
      systemAction - - actions of the system as a result of the error
      userAction - - instructions for correcting the error
      caughtError - - the error that resulted in this exception.