FlatFileFormatException.cs 943 B

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