FlatFileFormatException.cs 890 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. namespace Wayne.Lib.IO
  3. {
  4. /// <summary>
  5. /// Exception thrown when the flat file formatting fails.
  6. /// </summary>
  7. public class FlatFileFormatException : Exception
  8. {
  9. /// <summary>
  10. /// Exception thrown when the flat file formatting fails.
  11. /// </summary>
  12. public FlatFileFormatException() { }
  13. /// <summary>
  14. /// Exception thrown when the flat file formatting fails.
  15. /// </summary>
  16. /// <param name="message"></param>
  17. public FlatFileFormatException(string message) : base(message) { }
  18. /// <summary>
  19. /// Exception thrown when the flat file formatting fails.
  20. /// </summary>
  21. /// <param name="message"></param>
  22. /// <param name="inner"></param>
  23. public FlatFileFormatException(string message, Exception inner) : base(message, inner) { }
  24. }
  25. }