![JAR search and dependency download from the Maven repository](/logo.png)
com.databricks.jdbc.core.DatabricksSQLFeatureNotSupportedException Maven / Gradle / Ivy
package com.databricks.jdbc.core;
public class DatabricksSQLFeatureNotSupportedException extends DatabricksSQLException {
String featureName;
public DatabricksSQLFeatureNotSupportedException(String reason) {
// TODO: Add proper error code
super(reason);
this.featureName = "";
}
public DatabricksSQLFeatureNotSupportedException(String reason, String featureName) {
// TODO: Add proper error code
super(reason);
this.featureName = featureName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy