[java-opensaml] branch main updated: Add missing rethrow of exception after logging.
Codeberg
noreply at shibboleth.net
Wed May 13 15:42:28 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-opensaml.
View the commit online:
https://codeberg.org/Shibboleth/java-opensaml/commit/b7a035f8cc70d9691b094a748574ad4aa04abdb8
The following commit(s) were added to refs/heads/main by this push:
new b7a035f8c Add missing rethrow of exception after logging.
b7a035f8c is described below
commit b7a035f8cc70d9691b094a748574ad4aa04abdb8
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Wed May 13 11:38:48 2026 -0400
Add missing rethrow of exception after logging.
---
.../org/opensaml/soap/soap11/decoder/http/impl/HTTPSOAP11Decoder.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/opensaml-soap-impl/src/main/java/org/opensaml/soap/soap11/decoder/http/impl/HTTPSOAP11Decoder.java b/opensaml-soap-impl/src/main/java/org/opensaml/soap/soap11/decoder/http/impl/HTTPSOAP11Decoder.java
index bbee1e32d..32becae42 100644
--- a/opensaml-soap-impl/src/main/java/org/opensaml/soap/soap11/decoder/http/impl/HTTPSOAP11Decoder.java
+++ b/opensaml-soap-impl/src/main/java/org/opensaml/soap/soap11/decoder/http/impl/HTTPSOAP11Decoder.java
@@ -133,6 +133,7 @@ public class HTTPSOAP11Decoder extends BaseHttpServletRequestXMLMessageDecoder {
throw new MessageDecodingException("Unable to obtain input stream from HttpServletRequest", e);
} catch (final Exception e) {
SOAPSupport.checkExceptionStackAndLogSizeExceeded(e);
+ throw new MessageDecodingException("Fatal error processing SOAP message", e);
}
try {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list