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

com.databricks.jdbc.core.DatabricksParsingException Maven / Gradle / Ivy

There is a newer version: 2.6.40-patch-1
Show newest version
package com.databricks.jdbc.core;

public class DatabricksParsingException extends DatabricksSQLException {
  private final Throwable cause;

  public DatabricksParsingException(String message) {
    super(message);
    this.cause = null;
  }

  public DatabricksParsingException(String message, Throwable cause) {
    super(message);
    this.cause = cause;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy