123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- #pragma warning disable
- namespace Svg
- {
- public class SvgException : FormatException
- {
- public SvgException(string message) : base(message)
- {
- }
- }
- public class SvgIDException : FormatException
- {
- public SvgIDException(string message)
- : base(message)
- {
- }
- }
- public class SvgIDExistsException : SvgIDException
- {
- public SvgIDExistsException(string message)
- : base(message)
- {
- }
- }
- public class SvgIDWrongFormatException : SvgIDException
- {
- public SvgIDWrongFormatException(string message)
- : base(message)
- {
- }
- }
- }
- #pragma warning restore
|