All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sixestates.exception.SignatureVerificationException Maven / Gradle / Ivy

Go to download

A Java SDK for communicating with the 6Estates Intelligent Document Processing(IDP) Platform

There is a newer version: 8.2.3
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy