SvgMemoryException.cs 624 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.Text;
  6. #pragma warning disable
  7. namespace Svg.Exceptions
  8. {
  9. [Serializable]
  10. public class SvgMemoryException : Exception
  11. {
  12. public SvgMemoryException() { }
  13. public SvgMemoryException(string message) : base(message) { }
  14. public SvgMemoryException(string message, Exception inner) : base(message, inner) { }
  15. protected SvgMemoryException(
  16. SerializationInfo info,
  17. StreamingContext context) : base(info, context) { }
  18. }
  19. }
  20. #pragma warning restore