(tomcat) branch 9.0.x updated: Always call ExceptionUtils.handleThrowable first in a catch block

[email protected] Mon, 20 Jul 2026 09:08:13 +0000
Newsgroups gmane.comp.jakarta.tomcat.devel
Message-ID <178453849361.3873390.3774712194211556167@gitbox3-he-fi.apache.org>
This is an automated email from the ASF dual-hosted git repository.

markt-asf pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 28ae3e1217 Always call ExceptionUtils.handleThrowable first in a catch block
28ae3e1217 is described below

commit 28ae3e12170e7289c5a8f85d3efe765866013a1b
Author: Mark Thomas <[email protected]>
AuthorDate: Mon Jul 20 10:07:49 2026 +0100

    Always call ExceptionUtils.handleThrowable first in a catch block
---
 java/org/apache/catalina/users/DataSourceUserDatabase.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/org/apache/catalina/users/DataSourceUserDatabase.java b/java/org/apache/catalina/users/DataSourceUserDatabase.java
index 1b2960eadb..9b3867b38f 100644
--- a/java/org/apache/catalina/users/DataSourceUserDatabase.java
+++ b/java/org/apache/catalina/users/DataSourceUserDatabase.java
@@ -1250,8 +1250,8 @@ public class DataSourceUserDatabase extends SparseUserDatabase {
                 dbConnection.commit();
                 success = true;
             } catch (Throwable t) {
-                log.error(sm.getString("dataSourceUserDatabase.exception"), t);
                 ExceptionUtils.handleThrowable(t);
+                log.error(sm.getString("dataSourceUserDatabase.exception"), t);
                 // Some exception occurred so rollback everything
                 try {
                     dbConnection.rollback();