Catch multiple exceptions in REST views

Change-Id: I62eb25317656758b4b21ca68261edb70392c9458
This commit is contained in:
David Ostrovsky
2013-11-30 09:41:26 +01:00
parent d66e854d6d
commit 8ba03ff10b
4 changed files with 6 additions and 20 deletions

View File

@@ -124,10 +124,7 @@ public class CreateEmail implements RestModifyView<AccountResource, Input> {
try {
registerNewEmailFactory.create(email).send();
info.pendingConfirmation = true;
} catch (EmailException e) {
log.error("Cannot send email verification message to " + email, e);
throw e;
} catch (RuntimeException e) {
} catch (EmailException | RuntimeException e) {
log.error("Cannot send email verification message to " + email, e);
throw e;
}