aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/Api/InvalidHighlightTimelineException.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-05-05 16:18:33 +0800
committercrupest <crupest@outlook.com>2021-05-05 16:18:33 +0800
commit7d54e0b8b7ca84488fdcba90c68169a85b4d45c6 (patch)
treecf2fa58eef25e5bf871d8a71b15ac6694e357b54 /BackEnd/Timeline/Services/Api/InvalidHighlightTimelineException.cs
parent51e1205d3a9c72a5734a842536630cea69359107 (diff)
downloadtimeline-7d54e0b8b7ca84488fdcba90c68169a85b4d45c6.tar.gz
timeline-7d54e0b8b7ca84488fdcba90c68169a85b4d45c6.tar.bz2
timeline-7d54e0b8b7ca84488fdcba90c68169a85b4d45c6.zip
refactor: ...
Diffstat (limited to 'BackEnd/Timeline/Services/Api/InvalidHighlightTimelineException.cs')
-rw-r--r--BackEnd/Timeline/Services/Api/InvalidHighlightTimelineException.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/BackEnd/Timeline/Services/Api/InvalidHighlightTimelineException.cs b/BackEnd/Timeline/Services/Api/InvalidHighlightTimelineException.cs
deleted file mode 100644
index 13b04a6b..00000000
--- a/BackEnd/Timeline/Services/Api/InvalidHighlightTimelineException.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-
-namespace Timeline.Services.Api
-{
- [Serializable]
- public class InvalidHighlightTimelineException : Exception
- {
- public InvalidHighlightTimelineException() { }
- public InvalidHighlightTimelineException(string message) : base(message) { }
- public InvalidHighlightTimelineException(string message, Exception inner) : base(message, inner) { }
- protected InvalidHighlightTimelineException(
- System.Runtime.Serialization.SerializationInfo info,
- System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
- }
-}