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

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

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

import java.io.IOException;

public class DatabricksRetryHandlerException extends IOException {
  private final int errCode;

  public DatabricksRetryHandlerException(String message, int errCode) {
    super(message);
    this.errCode = errCode;
  }

  public int getErrCode() {
    return errCode;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy