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

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

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

public class DatabricksSQLFeatureNotImplementedException extends DatabricksSQLException {
  String featureName;

  public DatabricksSQLFeatureNotImplementedException(String reason) {
    // TODO: Add proper error code
    super(reason);
    this.featureName = "";
  }

  public DatabricksSQLFeatureNotImplementedException(String reason, String featureName) {
    // TODO: Add proper error code
    super(reason);
    this.featureName = featureName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy