Searching for document signatures with exception handling
Leave feedback
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 searching for document signatures:
- Compose try-catch block aboveΒ SearchΒ Β method with catchingΒ GroupDocsSignatureExceptionΒ type error.
This example shows how to handle GroupDocs.Signature exceptions.
try
{
// dont specify Password on protected document
LoadOptions loadOptions = new LoadOptions();
using (Signature signature = new Signature("samplePasswordProtected.pdf"))
{
DigitalSearchOptions options = new DigitalSearchOptions()
{
};
// sign document to file
List<DigitalSignature> signatures = signature.Search<DigitalSignature>(options);
}
}
catch (GroupDocsSignatureException ex)
{
Console.WriteLine("GroupDocs Signature Exception: " + ex.Message);
}
catch (Exception ex)
{
Console.WriteLine("System Exception: " + ex.Message);
}
You may easily run the code above and see the feature in action in ourΒ GitHub examples:
- GroupDocs.Signature for .NET examples, plugins, and showcase
- GroupDocs.Signature for Java examples, plugins, and showcase
- Document Signature for .NET MVC UI Example
- Document Signature for .NET App WebForms UI Example
- Document Signature for Java App Dropwizard UI Example
- Document Signature for Java Spring UI Example
Along with the full-featured .NET library, we provide simple but powerful free online apps.
To sign PDF, Word, Excel, PowerPoint, and other documents you can use the online apps from the GroupDocs.Signature App Product Family.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.