From 05ccb4d8f1bbe3fb64e117136b4a89bcfb0b0b33 Mon Sep 17 00:00:00 2001 From: crupest Date: Tue, 27 Oct 2020 19:21:35 +0800 Subject: Split front and back end. --- Timeline/Services/DatabaseCorruptedException.cs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Timeline/Services/DatabaseCorruptedException.cs (limited to 'Timeline/Services/DatabaseCorruptedException.cs') 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) { } - } -} -- cgit v1.2.3