aboutsummaryrefslogtreecommitdiff
path: root/Timeline/InvalidBranchException.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-01-18 00:50:31 +0800
committercrupest <crupest@outlook.com>2020-01-18 00:50:31 +0800
commitc5f3c69b3a008ab87542e523e2a59f37801bd65a (patch)
tree8479cc9af91a7e7b1c0c60a0abc778244359bdbd /Timeline/InvalidBranchException.cs
parent289c7e1fada1f4dae6ce5e421e997ebddd55c2df (diff)
downloadtimeline-c5f3c69b3a008ab87542e523e2a59f37801bd65a.tar.gz
timeline-c5f3c69b3a008ab87542e523e2a59f37801bd65a.tar.bz2
timeline-c5f3c69b3a008ab87542e523e2a59f37801bd65a.zip
...
Diffstat (limited to 'Timeline/InvalidBranchException.cs')
-rw-r--r--Timeline/InvalidBranchException.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Timeline/InvalidBranchException.cs b/Timeline/InvalidBranchException.cs
deleted file mode 100644
index 32937c5d..00000000
--- a/Timeline/InvalidBranchException.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-
-namespace Timeline
-{
-
- [Serializable]
- public class InvalidBranchException : Exception
- {
- public InvalidBranchException() : base(Resources.Common.ExceptionInvalidBranch) { }
- public InvalidBranchException(string message) : base(message) { }
- public InvalidBranchException(string message, Exception inner) : base(message, inner) { }
- protected InvalidBranchException(
- System.Runtime.Serialization.SerializationInfo info,
- System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
- }
-}