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

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

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

import java.io.IOException;

public class DatabricksRetryHandlerException extends IOException {
  private int errCode = 0;

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

  public int getErrCode() {
    return errCode;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy