From 657fb589137099794e58fbd35beb7d942b376965 Mon Sep 17 00:00:00 2001 From: crupest Date: Sun, 25 Apr 2021 21:20:04 +0800 Subject: ... --- .../Services/TimelinePostDataNotExistException.cs | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs (limited to 'BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs') diff --git a/BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs b/BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs deleted file mode 100644 index c70f5d9c..00000000 --- a/BackEnd/Timeline/Services/TimelinePostDataNotExistException.cs +++ /dev/null @@ -1,25 +0,0 @@ -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) { } - public TimelinePostDataNotExistException(long timelineId, long postId, long dataIndex, string? message = null, Exception? inner = null) : base(message, inner) - { - TimelineId = timelineId; - PostId = postId; - DataIndex = dataIndex; - } - protected TimelinePostDataNotExistException( - System.Runtime.Serialization.SerializationInfo info, - System.Runtime.Serialization.StreamingContext context) : base(info, context) { } - - public long TimelineId { get; set; } - public long PostId { get; set; } - public long DataIndex { get; set; } - } -} -- cgit v1.2.3