SvgException.cs 797 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. #pragma warning disable
  6. namespace Svg
  7. {
  8. public class SvgException : FormatException
  9. {
  10. public SvgException(string message) : base(message)
  11. {
  12. }
  13. }
  14. public class SvgIDException : FormatException
  15. {
  16. public SvgIDException(string message)
  17. : base(message)
  18. {
  19. }
  20. }
  21. public class SvgIDExistsException : SvgIDException
  22. {
  23. public SvgIDExistsException(string message)
  24. : base(message)
  25. {
  26. }
  27. }
  28. public class SvgIDWrongFormatException : SvgIDException
  29. {
  30. public SvgIDWrongFormatException(string message)
  31. : base(message)
  32. {
  33. }
  34. }
  35. }
  36. #pragma warning restore