diff options
author | 杨宇千 <crupest@outlook.com> | 2019-08-20 23:41:36 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-08-20 23:41:36 +0800 |
commit | 03549a181521009baf6d353a98f4cb8804602cdc (patch) | |
tree | 4554d77dcf4e10cdfa9955e496c0ede22788448a /Timeline/Services/DatabaseCorruptedException.cs | |
parent | 7814ed7059f74cfecfa8a0c9aa4f9946d1015364 (diff) | |
download | timeline-03549a181521009baf6d353a98f4cb8804602cdc.tar.gz timeline-03549a181521009baf6d353a98f4cb8804602cdc.tar.bz2 timeline-03549a181521009baf6d353a98f4cb8804602cdc.zip |
Use etag for 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) { }
+ }
+}
|