12345678910111213141516171819202122232425262728 |
- using System;
- namespace Wayne.Lib.IO
- {
- /// <summary>
- /// Exception thrown when the flat file formatting fails.
- /// </summary>
- public class FlatFileFormatException : Exception
- {
- /// <summary>
- /// Exception thrown when the flat file formatting fails.
- /// </summary>
- public FlatFileFormatException() { }
- /// <summary>
- /// Exception thrown when the flat file formatting fails.
- /// </summary>
- /// <param name="message"></param>
- public FlatFileFormatException(string message) : base(message) { }
- /// <summary>
- /// Exception thrown when the flat file formatting fails.
- /// </summary>
- /// <param name="message"></param>
- /// <param name="inner"></param>
- public FlatFileFormatException(string message, Exception inner) : base(message, inner) { }
- }
- }
|