diff options
author | crupest <crupest@outlook.com> | 2020-06-13 00:28:35 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-13 00:28:35 +0800 |
commit | d6e9ae92a782f747752d9e26504dc2f27e723f04 (patch) | |
tree | 57e3d021f6bd2aaa747e1e8fbffdf6a2636977f5 /Timeline/Services/TimelineNotExistException.cs | |
parent | b2dcd4529bfb80fa2f1e6095cd5c976d4e90ec8e (diff) | |
download | timeline-d6e9ae92a782f747752d9e26504dc2f27e723f04.tar.gz timeline-d6e9ae92a782f747752d9e26504dc2f27e723f04.tar.bz2 timeline-d6e9ae92a782f747752d9e26504dc2f27e723f04.zip |
refactor(back): Fix #100 .
Diffstat (limited to 'Timeline/Services/TimelineNotExistException.cs')
-rw-r--r-- | Timeline/Services/TimelineNotExistException.cs | 19 |
1 files changed, 0 insertions, 19 deletions
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; }
- }
-}
|