using System; using System.Collections.Generic; using System.Text; 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) { } } }