com.sixestates.exception.AuthenticationException 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 AuthenticationException extends IdpException {
private static final long serialVersionUID = 1L;
public AuthenticationException(final String message) {
super(message);
}
}