| | | 1 | | using System; |
| | | 2 | | |
| | | 3 | | namespace DirectSight.Parser; |
| | | 4 | | |
| | | 5 | | /// <summary> |
| | | 6 | | /// Exception indicating that a parser/xml format is not or no longer supported. |
| | | 7 | | /// </summary> |
| | | 8 | | [Serializable] |
| | | 9 | | internal class UnsupportedParserException : Exception |
| | | 10 | | { |
| | | 11 | | /// <summary> |
| | | 12 | | /// Initializes a new instance of the <see cref="UnsupportedParserException"/> class. |
| | | 13 | | /// </summary> |
| | 0 | 14 | | public UnsupportedParserException() |
| | 0 | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Initializes a new instance of the <see cref="UnsupportedParserException"/> class. |
| | | 20 | | /// </summary> |
| | | 21 | | /// <param name="message">The message.</param> |
| | | 22 | | public UnsupportedParserException(string message) |
| | 0 | 23 | | : base(message) |
| | 0 | 24 | | { |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> |
| | | 28 | | /// Initializes a new instance of the <see cref="UnsupportedParserException"/> class. |
| | | 29 | | /// </summary> |
| | | 30 | | /// <param name="message">The message.</param> |
| | | 31 | | /// <param name="inner">The inner exception.</param> |
| | | 32 | | public UnsupportedParserException(string message, Exception inner) |
| | 0 | 33 | | : base(message, inner) |
| | 0 | 34 | | { |
| | 0 | 35 | | } |
| | | 36 | | } |