diff options
author | 杨宇千 <crupest@outlook.com> | 2019-08-20 23:57:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-20 23:57:47 +0800 |
commit | fd95f9abc017575b13a31dd16ac72ef663e984d6 (patch) | |
tree | 3d20f696dd097b86eeba497baf8dc1baf966626c /Timeline/Services/DatabaseCorruptedException.cs | |
parent | 7814ed7059f74cfecfa8a0c9aa4f9946d1015364 (diff) | |
parent | 55f3870cc5301477a7462748f0232f04040a8d2f (diff) | |
download | timeline-fd95f9abc017575b13a31dd16ac72ef663e984d6.tar.gz timeline-fd95f9abc017575b13a31dd16ac72ef663e984d6.tar.bz2 timeline-fd95f9abc017575b13a31dd16ac72ef663e984d6.zip |
Merge pull request #47 from crupest/avatar-enhance
Use etag for avatar cache.
Diffstat (limited to 'Timeline/Services/DatabaseCorruptedException.cs')
-rw-r--r-- | Timeline/Services/DatabaseCorruptedException.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Timeline/Services/DatabaseCorruptedException.cs b/Timeline/Services/DatabaseCorruptedException.cs new file mode 100644 index 00000000..9988e0ad --- /dev/null +++ b/Timeline/Services/DatabaseCorruptedException.cs @@ -0,0 +1,15 @@ +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) { }
+ }
+}
|