using System;
namespace Wayne.Lib.IO
{
///
/// Unit testing exception. Thrown when the processing was interrupted because of a deliberate
/// interruption of the file writing for unit testing purposes.
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors")]
public class SafeFileWritingInterruptedException : Exception
{
///
/// Constructor
///
public SafeFileWritingInterruptedException() { }
///
/// Constructor
///
public SafeFileWritingInterruptedException(string message) : base(message) { }
///
/// Constructor
///
public SafeFileWritingInterruptedException(string message, Exception inner) : base(message, inner) { }
}
}