Verifying documents with exception handling


GroupDocs.Signature provides different error messages due to validation issues, missing required data, files etc. For handling these exceptions class GroupDocsSignatureException should be used.

Here are the steps to handle exceptions from GroupDocs.Signature while document verification:

This example shows how to handle GroupDocs.Signature exceptions.

try {
    Signature signature = new Signature(filePath);
    // create QRCode option with predefined QRCode text
    DigitalVerifyOptions options = new DigitalVerifyOptions();
    options.setCertificateFilePath(Constants.CertificatePfx);
    // skip password specification
    //options.setPassword("1234567890");
 
    // sign document to file
    VerificationResult result = signature.verify(options);
}catch(GroupDocsSignatureException ex){
    System.out.print("GroupDocs Signature Exception: " + ex.getMessage());
}
catch (Exception ex)
{
    System.out.print("System Exception: " + ex.getMessage());
}

More resources

GitHub Examples 

You may easily run the code above and see the feature in action in our GitHub examples:

Free Online App 

Along with full-featured .NET library we provide simple, but powerful free Apps.
You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.