FileCorruptedException
FileCorruptedException class
Thrown during document load, when the document appears to be corrupted and impossible to load.
To learn more, visit the Programming with Documents documentation article.
public class FileCorruptedException : Exception
Examples
Shows how to catch a FileCorruptedException.
try
{
// If we get an "Unreadable content" error message when trying to open a document using Microsoft Word,
// chances are that we will get an exception thrown when trying to load that document using Aspose.Words.
Document doc = new Document(MyDir + "Corrupted document.docx");
}
catch (FileCorruptedException e)
{
Console.WriteLine(e.Message);
}
See Also
- namespace Aspose.Words
- assembly Aspose.Words