io.signpath.signpathclient.SignPathClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A Client for the SignPath API
package io.signpath.signpathclient;
/**
*
* @author volodymyr.bobko
*/
public class SignPathClientException extends RuntimeException {
public SignPathClientException(String errorMessage, Throwable err) {
super(errorMessage, err);
}
public SignPathClientException(String errorMessage) {
super(errorMessage);
}
}