[#150] status: Define enum of sequence numbers of the failure sections

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-10-04 14:55:23 +03:00 committed by LeL
parent c907451350
commit f55f83fb24

View file

@ -26,3 +26,9 @@ enum Success {
enum CommonFail {
INTERNAL = 0;
}
enum Section {
SECTION_SUCCESS = 0;
SECTION_FAILURE_COMMON = 1;
}