Resoled changes #154
Merged
tcdlpds
merged 3 commits from nishan/device-mgt-core:visible-roles
into master
1 year ago
Loading…
Reference in new issue
There is no content yet.
Delete Branch 'nishan/device-mgt-core:visible-roles'
Deleting a branch is permanent. It CANNOT be undone. Continue?
Fixes: https://roadmap.entgra.net/issues/9775
log.error(msg, e);
throw new ApplicationManagementException(msg, e);
} catch (MetadataManagementException e) {
log.error("Error occurred while retrieving metadata list", e);
You need to log the error message and throw it.
throw new ApplicationManagementException(msg, e);
} catch (MetadataManagementException e) {
log.error("Error occurred while retrieving metadata list", e);
throw new RuntimeException(e);
What's the reason for throwing RuntimeException here?
73732e7ffd
to229c8dcb34
1 year ago} catch (MetadataManagementException e) {
String msg = "Error occurred while retrieving metadata list";
log.error(msg, e);
throw new MetadataManagementException(msg, e);
Throw ApplicationManagement Exception
3616245ae6
into master 1 year agoReviewers
3616245ae6
.