123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wayne.Lib.IO
- {
-
-
-
- public class SafeFileWritingIOException : Exception
- {
-
-
-
- public SafeFileWritingIOException() { }
-
-
-
- public SafeFileWritingIOException(string message) : base(message) { }
-
-
-
- public SafeFileWritingIOException(string message, Exception inner) : base(message, inner) { }
- }
- }
|