I have this lambda expression where this expression
institutionUserConnectionService.getActiveInstitutionUserConnectionsByUser(u)
throws a BusinessWxception. Is there any possibility to handle this exception?
users.parallelStream()
.forEach(u -> institutionUserConnections
.addAll(institutionUserConnectionService
.getActiveInstitutionUserConnectionsByUser(u)));