com.tigergraph.spark.client.common.RestppErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tigergraph-spark-connector Show documentation
Show all versions of tigergraph-spark-connector Show documentation
TigerGraph Ecosystem - Spark Connector
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);
}
}