fix error codes

This commit is contained in:
etreschenkov 2026-04-24 12:59:25 +03:00
parent a9c9f040b3
commit 4dd5f7fde1

View file

@ -4,12 +4,11 @@ import ru.spcex.platform.utils.enumeration.IErrorEnumId;
public enum DefaultManagementErrors implements IErrorEnumId {
//todo уточнить порядковый номер ошибки модуля
GeneralError(3000L), // Общая ошибка модуля
UserVerifyDenial(3001L), // 'Нет прав на проведение данной операции
RequiredFieldIsEmpty(3002L),
DictionaryNotFound(3003L),
RecordNotFound(3006L),
GeneralError(11000L),
UserVerifyDenial(11001L),
RequiredFieldIsEmpty(11002L),
DictionaryNotFound(11003L),
RecordNotFound(11006L),
RecordAlreadyPresent(11002L),
OnlyBalancingOrdersAllowed(11003L),
;