1234567891011121314151617181920212223242526 |
- using System;
- namespace Wayne.Lib.IO
- {
-
-
-
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable")]
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors")]
- public class SafeFileWritingInterruptedException : Exception
- {
-
-
-
- public SafeFileWritingInterruptedException() { }
-
-
-
- public SafeFileWritingInterruptedException(string message) : base(message) { }
-
-
-
- public SafeFileWritingInterruptedException(string message, Exception inner) : base(message, inner) { }
- }
- }
|