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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NPOI
  5. {
  6. public class POIXMLException:Exception
  7. {
  8. public POIXMLException()
  9. : base()
  10. { }
  11. public POIXMLException(string msg)
  12. : base(msg)
  13. { }
  14. public POIXMLException(string msg,Exception ex)
  15. : base(msg,ex)
  16. { }
  17. public POIXMLException(Exception ex)
  18. : base(string.Empty,ex)
  19. { }
  20. }
  21. }