diff options
author | crupest <crupest@outlook.com> | 2020-01-18 00:50:31 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-01-18 00:50:31 +0800 |
commit | c5f3c69b3a008ab87542e523e2a59f37801bd65a (patch) | |
tree | 8479cc9af91a7e7b1c0c60a0abc778244359bdbd /Timeline/InvalidBranchException.cs | |
parent | 289c7e1fada1f4dae6ce5e421e997ebddd55c2df (diff) | |
download | timeline-c5f3c69b3a008ab87542e523e2a59f37801bd65a.tar.gz timeline-c5f3c69b3a008ab87542e523e2a59f37801bd65a.tar.bz2 timeline-c5f3c69b3a008ab87542e523e2a59f37801bd65a.zip |
...
Diffstat (limited to 'Timeline/InvalidBranchException.cs')
-rw-r--r-- | Timeline/InvalidBranchException.cs | 16 |
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) { }
- }
-}
|