aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-02-10 14:31:31 +0800
committercrupest <crupest@outlook.com>2021-02-10 14:31:31 +0800
commit872f0e9f094f37db9ff208d178ad5bea2fafc1a7 (patch)
tree27291dc4105e64ca3ed6ed43a8822cb911ed49a9 /BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs
parent253b06dfaa091d986a8714c081fd1e01679f538a (diff)
downloadtimeline-872f0e9f094f37db9ff208d178ad5bea2fafc1a7.tar.gz
timeline-872f0e9f094f37db9ff208d178ad5bea2fafc1a7.tar.bz2
timeline-872f0e9f094f37db9ff208d178ad5bea2fafc1a7.zip
...
Diffstat (limited to 'BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs')
-rw-r--r--BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs b/BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs
new file mode 100644
index 00000000..eac7a771
--- /dev/null
+++ b/BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Timeline.Services
+{
+ [Serializable]
+ public class TimelinePostDataNotExistException : Exception
+ {
+ public TimelinePostDataNotExistException() : this(null, null) { }
+ public TimelinePostDataNotExistException(string? message) : this(message, null) { }
+ public TimelinePostDataNotExistException(string? message, Exception? inner) : base(message, inner) { }
+ protected TimelinePostDataNotExistException(
+ System.Runtime.Serialization.SerializationInfo info,
+ System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
+ }
+}