SafeFileWritingIOException.cs 777 B

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