12345678910111213141516171819202122232425 |
- using System;
- 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) { }
- }
- }
|