org.digidoc4j.exceptions.SignatureVerificationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digidoc4j Show documentation
Show all versions of digidoc4j Show documentation
DigiDoc4j is a Java library for digitally signing documents and creating digital signature containers
of signed documents
The newest version!
package org.digidoc4j.exceptions;
import eu.europa.esig.dss.model.DSSException;
/**
* Created by Janar Rahumeel (CGI Estonia)
*/
public class SignatureVerificationException extends DSSException {
/**
* @param message error message
*/
public SignatureVerificationException(String message) {
super(message);
}
/**
* @param message error message
* @param cause cause
*/
public SignatureVerificationException(String message, Exception cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy