fix error codes
This commit is contained in:
parent
a9c9f040b3
commit
4dd5f7fde1
1 changed files with 5 additions and 6 deletions
|
|
@ -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),
|
||||
;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue