a .NET library that can read/write Office formats without Microsoft Office installed. No COM+, no interop.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
473 B

using System;
namespace NPOI
{
[Serializable]
public class EncryptedDocumentException : InvalidOperationException
{
public EncryptedDocumentException(string message)
: base(message)
{ }
public EncryptedDocumentException(string message, Exception cause)
: base(message, cause)
{ }
public EncryptedDocumentException(Exception cause)
: base(cause.Message)
{
}
}
}