diff options
Diffstat (limited to 'Timeline/Services/DatabaseCorruptedException.cs')
-rw-r--r-- | Timeline/Services/DatabaseCorruptedException.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Timeline/Services/DatabaseCorruptedException.cs b/Timeline/Services/DatabaseCorruptedException.cs deleted file mode 100644 index 9988e0ad..00000000 --- a/Timeline/Services/DatabaseCorruptedException.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System;
-
-namespace Timeline.Services
-{
- [Serializable]
- public class DatabaseCorruptedException : Exception
- {
- public DatabaseCorruptedException() { }
- public DatabaseCorruptedException(string message) : base(message) { }
- public DatabaseCorruptedException(string message, Exception inner) : base(message, inner) { }
- protected DatabaseCorruptedException(
- System.Runtime.Serialization.SerializationInfo info,
- System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
- }
-}
|