SafeFileWritingIOException.cs 724 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace Wayne.Lib.IO
  3. {
  4. /// <summary>
  5. /// Exception that is thrown when an unexpected file lock were found on any of the files that are involved in the safe file writing.
  6. /// </summary>
  7. public class SafeFileWritingIOException : Exception
  8. {
  9. /// <summary>
  10. /// Constructor
  11. /// </summary>
  12. public SafeFileWritingIOException() { }
  13. /// <summary>
  14. /// Constructor
  15. /// </summary>
  16. public SafeFileWritingIOException(string message) : base(message) { }
  17. /// <summary>
  18. /// Constructor
  19. /// </summary>
  20. public SafeFileWritingIOException(string message, Exception inner) : base(message, inner) { }
  21. }
  22. }