using System; using System.Collections.Generic; using System.Text; namespace Wayne.Lib.IO { /// /// Exception that is thrown when an unexpected file lock were found on any of the files that are involved in the safe file writing. /// public class SafeFileWritingIOException : Exception { /// /// Constructor /// public SafeFileWritingIOException() { } /// /// Constructor /// public SafeFileWritingIOException(string message) : base(message) { } /// /// Constructor /// public SafeFileWritingIOException(string message, Exception inner) : base(message, inner) { } } }