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

com.tigergraph.spark.client.common.RestppErrorException Maven / Gradle / Ivy

The newest version!
package com.tigergraph.spark.client.common;

public class RestppErrorException extends RuntimeException {
  public RestppErrorException(String code, String message) {
    super(String.format("RESTPP error response, code: %s, message: %s", code, message));
  }

  public RestppErrorException(String message, Throwable cause) {
    super(message, cause);
  }

  public RestppErrorException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy