com.databricks.jdbc.exception.DatabricksParsingException Maven / Gradle / Ivy
package com.databricks.jdbc.exception;
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 - 2025 Weber Informatics LLC | Privacy Policy