WmfParseException.cs 500 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMFConverter.Wmf
  7. {
  8. public class WmfParseException : Exception
  9. {
  10. public WmfParseException()
  11. :base()
  12. {
  13. }
  14. public WmfParseException(String message)
  15. : base(message)
  16. {
  17. }
  18. public WmfParseException(String message, Exception t)
  19. : base(message,t)
  20. {
  21. }
  22. }
  23. }