Fix DataSourceUtils inconsistent exception handling
Align IllegalStateException with SQLException handling and propagate the original exception. See gh-28669 Co-authored-by: Christoph Mies <chr.mi@web.de>
This commit is contained in:
committed by
Stephane Nicoll
parent
26df4580b3
commit
edfe5d2f18
@@ -48,4 +48,7 @@ public class CannotGetJdbcConnectionException extends DataAccessResourceFailureE
|
||||
super(msg, ex);
|
||||
}
|
||||
|
||||
public CannotGetJdbcConnectionException(String msg, IllegalStateException ex) {
|
||||
super(msg, ex);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2021 the original author or authors.
|
||||
* Copyright 2002-2022 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -83,7 +83,7 @@ public abstract class DataSourceUtils {
|
||||
throw new CannotGetJdbcConnectionException("Failed to obtain JDBC Connection", ex);
|
||||
}
|
||||
catch (IllegalStateException ex) {
|
||||
throw new CannotGetJdbcConnectionException("Failed to obtain JDBC Connection: " + ex.getMessage());
|
||||
throw new CannotGetJdbcConnectionException("Failed to obtain JDBC Connection", ex);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user