aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.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
commit98df0fb9fe94b703325f09bf765904a11e8a7d4c (patch)
tree544f7af5bdac4726404cc466e61947471949ffaa /BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.cs
parent4ea535d93753826ec900879560d876cec4d58c38 (diff)
downloadtimeline-98df0fb9fe94b703325f09bf765904a11e8a7d4c.tar.gz
timeline-98df0fb9fe94b703325f09bf765904a11e8a7d4c.tar.bz2
timeline-98df0fb9fe94b703325f09bf765904a11e8a7d4c.zip
...
Diffstat (limited to 'BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.cs')
-rw-r--r--BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.cs b/BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.cs
deleted file mode 100644
index c4b6bf62..00000000
--- a/BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-
-namespace Timeline.Services.Exceptions
-{
- [Serializable]
- public class TimelinePostNoDataException : Exception
- {
- public TimelinePostNoDataException() : this(null, null) { }
- public TimelinePostNoDataException(string? message) : this(message, null) { }
- public TimelinePostNoDataException(string? message, Exception? inner) : base(Resources.Services.Exceptions.TimelineNoDataException.AppendAdditionalMessage(message), inner) { }
- protected TimelinePostNoDataException(
- System.Runtime.Serialization.SerializationInfo info,
- System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
- }
-}