From eba8e9698c09b805d8ac2a8f58db93b947ac29e3 Mon Sep 17 00:00:00 2001 From: crupest Date: Sat, 13 Jun 2020 00:28:35 +0800 Subject: refactor(back): Fix #100 . --- Timeline/Services/TimelineNotExistException.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Timeline/Services/TimelineNotExistException.cs (limited to 'Timeline/Services/TimelineNotExistException.cs') diff --git a/Timeline/Services/TimelineNotExistException.cs b/Timeline/Services/TimelineNotExistException.cs deleted file mode 100644 index 6dfd0bab..00000000 --- a/Timeline/Services/TimelineNotExistException.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; - -namespace Timeline.Services -{ - [Serializable] - public class TimelineNotExistException : Exception - { - public TimelineNotExistException() : base(Resources.Services.Exception.TimelineNotExistException) { } - public TimelineNotExistException(string name) - : base(Resources.Services.Exception.TimelineNotExistException) { Name = name; } - public TimelineNotExistException(string name, Exception inner) - : base(Resources.Services.Exception.TimelineNotExistException, inner) { Name = name; } - protected TimelineNotExistException( - System.Runtime.Serialization.SerializationInfo info, - System.Runtime.Serialization.StreamingContext context) : base(info, context) { } - - public string? Name { get; set; } - } -} -- cgit v1.2.3