Skip to content
Snippets Groups Projects

Add more logging and exception usage in committee services

2 files
+ 50
34
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -112,8 +112,7 @@ public class WorkingGroupsResource {
}
WorkingGroupCommittee committee = wgService.getWGCommittee(alias, groupPrefix);
if (Objects.isNull(committee)) {
if (committee == null) {
throw new BadRequestException(String.format("Invalid committee parameters: %s, %s", alias, groupPrefix));
}
Loading