Skip to content

Commit

Permalink
MailHander should catch ServiceConfigurationError #123
Browse files Browse the repository at this point in the history
Signed-off-by: jmehrens <[email protected]>
  • Loading branch information
jmehrens committed Jan 30, 2024
1 parent af5caf3 commit 47d8a5e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4042,6 +4042,8 @@ private Session updateSession() {
} catch (final RuntimeException re) {
reportError("Unable to update session",
re, ErrorManager.OPEN_FAILURE);
} catch (final LinkageError GLASSFISH_21258) {
reportLinkageError(GLASSFISH_21258, ErrorManager.OPEN_FAILURE);
} catch (final ServiceConfigurationError sce) {
reportConfigurationError(sce, ErrorManager.OPEN_FAILURE);
}
Expand Down

0 comments on commit 47d8a5e

Please sign in to comment.