com.sixestates.exception.SignatureVerificationException 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;
/**
* @author kechen, 27/09/24.
*/
public class SignatureVerificationException extends IdpException {
private String sigHeader;
public SignatureVerificationException(String message, String sigHeader) {
super(message);
this.sigHeader = sigHeader;
}
public SignatureVerificationException(String message, Throwable cause) {
super(message, cause);
}
}