diff options
author | crupest <crupest@outlook.com> | 2020-02-03 17:50:17 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-02-03 17:50:17 +0800 |
commit | 4b2569368073bbd556bbe71bd51807de91f814cb (patch) | |
tree | 9f9747d30d15abf8389527039db542c961135b1f /Timeline.ErrorCodes/ErrorCodes.cs | |
parent | 10985f0a26010988d26777d5a6d985b4fbc0a776 (diff) | |
download | timeline-4b2569368073bbd556bbe71bd51807de91f814cb.tar.gz timeline-4b2569368073bbd556bbe71bd51807de91f814cb.tar.bz2 timeline-4b2569368073bbd556bbe71bd51807de91f814cb.zip |
Add TimelineController.
Diffstat (limited to 'Timeline.ErrorCodes/ErrorCodes.cs')
-rw-r--r-- | Timeline.ErrorCodes/ErrorCodes.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Timeline.ErrorCodes/ErrorCodes.cs b/Timeline.ErrorCodes/ErrorCodes.cs index ea74cf0e..e07fbd94 100644 --- a/Timeline.ErrorCodes/ErrorCodes.cs +++ b/Timeline.ErrorCodes/ErrorCodes.cs @@ -56,9 +56,11 @@ public const int BadFormat_BadSize = 1_103_00_03;
}
- public static class TimelineController
+ public static class TimelineCommon
{
- public const int MemberPut_NotExist = 1_104_01_01;
+ public const int NameConflict = 1_104_01_01;
+ public const int NotExist = 1_104_02_01;
+ public const int MemberPut_NotExist = 1_104_03_01;
}
}
}
|