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

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

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

import java.sql.SQLFeatureNotSupportedException;

public class DatabricksSQLFeatureNotSupportedException extends SQLFeatureNotSupportedException {

  public DatabricksSQLFeatureNotSupportedException(String reason) {
    // TODO: Add vendor-specific (databricks) exception code
    super(reason, null, 0);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy