Skip to content
Closed
Prev Previous commit
updates after code review
  • Loading branch information
mmoayyed committed Oct 16, 2024
commit 2015f536eaa7724ca8c5edd140c96e89ae078bca
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ public MessageSource messageSource(MessageSourceProperties properties) {
messageSource.setCommonMessages(commonProperties);
}
}
catch (IOException e) {
throw new UncheckedIOException("Failed to load common messages", e);
catch (IOException ex) {
throw new UncheckedIOException("Failed to load common messages", ex);
}
return messageSource;
}
Expand Down
Loading