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

com.databricks.jdbc.exception.DatabricksBatchUpdateException Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package com.databricks.jdbc.exception;

import java.sql.BatchUpdateException;

public class DatabricksBatchUpdateException extends BatchUpdateException {
  public DatabricksBatchUpdateException(String reason, int[] updateCounts, Throwable cause) {
    super(reason, updateCounts, cause);
  }

  public DatabricksBatchUpdateException(
      String reason, String SQLState, int vendorCode, int[] updateCounts, Throwable cause) {
    super(reason, SQLState, vendorCode, updateCounts, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy