fix error message add user

This commit is contained in:
dirgantarasiahaan
2023-05-29 09:12:10 +07:00
parent e09222e163
commit 3907377492

View File

@ -99,9 +99,9 @@ public class CommonService {
try { try {
return EncryptDecryptUtils.decrypt(password, privateKey); return EncryptDecryptUtils.decrypt(password, privateKey);
} catch (Exception ex) { } catch (Exception ex) {
throw new BusinessException(Constants.ERR_CODE_10010, throw new BusinessException(Constants.ERR_CODE_10011,
Constants.ERR_TTL_10010, Constants.ERR_TTL_10011,
Constants.ERR_MSG_10010); Constants.ERR_MSG_10011);
} }
} }