using System; using System.Collections.Generic; using System.Text; namespace Wayne.Lib.IO { /// /// Exception thrown when the flat file formatting fails. /// public class FlatFileFormatException : Exception { /// /// Exception thrown when the flat file formatting fails. /// public FlatFileFormatException() { } /// /// Exception thrown when the flat file formatting fails. /// /// public FlatFileFormatException(string message) : base(message) { } /// /// Exception thrown when the flat file formatting fails. /// /// /// public FlatFileFormatException(string message, Exception inner) : base(message, inner) { } } }