mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
add rollback
This commit is contained in:
parent
4a239887cb
commit
ae13169377
@ -167,6 +167,7 @@ public class GroupManagementProviderServiceImpl implements GroupManagementProvid
|
||||
} else {
|
||||
DeviceGroup immediateParentGroup = groupDAO.getGroup(groups.getParentGroupId(), tenantId);
|
||||
if (immediateParentGroup == null) {
|
||||
GroupManagementDAOFactory.rollbackTransaction();
|
||||
String msg = "Parent group with group ID '" + groups.getParentGroupId() + "' does not exist. Hence creating of group '" + groups.getName() + "' was not success";
|
||||
log.error(msg);
|
||||
throw new GroupManagementException(msg);
|
||||
@ -182,7 +183,7 @@ public class GroupManagementProviderServiceImpl implements GroupManagementProvid
|
||||
} else {
|
||||
throw new GroupManagementException("Group exist with name " + groups.getName());
|
||||
}
|
||||
} catch (GroupManagementDAOException | GroupManagementException e) {
|
||||
} catch (GroupManagementDAOException e) {
|
||||
GroupManagementDAOFactory.rollbackTransaction();
|
||||
String msg = e.getMessage();
|
||||
log.error(msg, e);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user