aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Services/ConflictException.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-06-13 00:28:35 +0800
committercrupest <crupest@outlook.com>2020-06-13 00:28:35 +0800
commitd6e9ae92a782f747752d9e26504dc2f27e723f04 (patch)
tree57e3d021f6bd2aaa747e1e8fbffdf6a2636977f5 /Timeline/Services/ConflictException.cs
parentb2dcd4529bfb80fa2f1e6095cd5c976d4e90ec8e (diff)
downloadtimeline-d6e9ae92a782f747752d9e26504dc2f27e723f04.tar.gz
timeline-d6e9ae92a782f747752d9e26504dc2f27e723f04.tar.bz2
timeline-d6e9ae92a782f747752d9e26504dc2f27e723f04.zip
refactor(back): Fix #100 .
Diffstat (limited to 'Timeline/Services/ConflictException.cs')
-rw-r--r--Timeline/Services/ConflictException.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/Timeline/Services/ConflictException.cs b/Timeline/Services/ConflictException.cs
deleted file mode 100644
index 6ede183a..00000000
--- a/Timeline/Services/ConflictException.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-
-namespace Timeline.Services
-{
- /// <summary>
- /// Thrown when a resource already exists and conflicts with the given resource.
- /// </summary>
- /// <remarks>
- /// For example a username already exists and conflicts with the given username.
- /// </remarks>
- [Serializable]
- public class ConflictException : Exception
- {
- public ConflictException() : base(Resources.Services.Exception.ConflictException) { }
- public ConflictException(string message) : base(message) { }
- public ConflictException(string message, Exception inner) : base(message, inner) { }
- protected ConflictException(
- System.Runtime.Serialization.SerializationInfo info,
- System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
- }
-}