com.exasol.bucketfs.jsonrpc.JsonRpcException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bucketfs-java Show documentation
Show all versions of bucketfs-java Show documentation
Java library for automating tasks on Exasol's BucketFS.
The newest version!
package com.exasol.bucketfs.jsonrpc;
/**
* {@link RuntimeException} that is thrown in case execution of an {@link RpcCommand} fails.
*/
public class JsonRpcException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Create a new instance of a {@link JsonRpcException}.
*
* @param message error message
* @param cause exception that caused this one
*/
public JsonRpcException(final String message, final Throwable cause) {
super(message, cause);
}
/**
* Create a new instance of a {@link JsonRpcException}.
*
* @param message error message
*/
public JsonRpcException(final String message) {
super(message);
}
}