using System;
namespace PdfOxide.Exceptions
{
public class XfaException : PdfException
{
private const string XfaErrorCode = "9400";
public XfaException(string message)
: base(XfaErrorCode, "XFA operation failed: " + message)
{
}
public XfaException(string message, Exception? innerException = null)
: base(XfaErrorCode, "XFA operation failed: " + message, innerException)
{
}
}
}