12345678910111213141516171819202122232425262728 |
- using System;
- namespace Wayne.Lib.IO
- {
-
-
-
- public class FlatFileFormatException : Exception
- {
-
-
-
- public FlatFileFormatException() { }
-
-
-
-
- public FlatFileFormatException(string message) : base(message) { }
-
-
-
-
-
- public FlatFileFormatException(string message, Exception inner) : base(message, inner) { }
- }
- }
|