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.

25 lines
481 B

using System;
using System.Collections.Generic;
using System.Text;
namespace NPOI
{
public class POIXMLException:Exception
{
public POIXMLException()
: base()
{ }
public POIXMLException(string msg)
: base(msg)
{ }
public POIXMLException(string msg,Exception ex)
: base(msg,ex)
{ }
public POIXMLException(Exception ex)
: base(string.Empty,ex)
{ }
}
}