com.sixestates.exception.ApiConnectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idp-sdk Show documentation
Show all versions of idp-sdk Show documentation
A Java SDK for communicating with the 6Estates Intelligent Document Processing(IDP) Platform
package com.sixestates.exception;
public class ApiConnectionException extends IdpException {
private static final long serialVersionUID = 1L;
public ApiConnectionException(final String message) {
super(message);
}
public ApiConnectionException(final String message, final Throwable cause) {
super(message, cause);
}
}