diff options
author | crupest <crupest@outlook.com> | 2021-02-10 14:31:31 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-02-10 14:31:31 +0800 |
commit | 872f0e9f094f37db9ff208d178ad5bea2fafc1a7 (patch) | |
tree | 27291dc4105e64ca3ed6ed43a8822cb911ed49a9 /BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.cs | |
parent | 253b06dfaa091d986a8714c081fd1e01679f538a (diff) | |
download | timeline-872f0e9f094f37db9ff208d178ad5bea2fafc1a7.tar.gz timeline-872f0e9f094f37db9ff208d178ad5bea2fafc1a7.tar.bz2 timeline-872f0e9f094f37db9ff208d178ad5bea2fafc1a7.zip |
...
Diffstat (limited to 'BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.cs')
-rw-r--r-- | BackEnd/Timeline/Services/Exceptions/TimelinePostNoDataException.cs | 15 |
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) { }
- }
-}
|