com.sixestates.exception.IdpException 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 abstract class IdpException extends RuntimeException {
private static final long serialVersionUID = 1L;
public IdpException(final String message) {
this(message, null);
}
public IdpException(final String message, final Throwable cause) {
super(message, cause);
}
}