Skip to content

Commit 729c4e5

Browse files
committed
Merge branch '5.3.x'
2 parents a575590 + 5650e20 commit 729c4e5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

spring-jdbc/src/main/java/org/springframework/jdbc/CannotGetJdbcConnectionException.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public class CannotGetJdbcConnectionException extends DataAccessResourceFailureException {
3232

3333
/**
34-
* Constructor for CannotGetJdbcConnectionException.
34+
* Constructor for {@code CannotGetJdbcConnectionException}.
3535
* @param msg the detail message
3636
* @since 5.0
3737
*/
@@ -40,7 +40,7 @@ public CannotGetJdbcConnectionException(String msg) {
4040
}
4141

4242
/**
43-
* Constructor for CannotGetJdbcConnectionException.
43+
* Constructor for {@code CannotGetJdbcConnectionException}.
4444
* @param msg the detail message
4545
* @param ex the root cause SQLException
4646
*/
@@ -49,11 +49,13 @@ public CannotGetJdbcConnectionException(String msg, @Nullable SQLException ex) {
4949
}
5050

5151
/**
52-
* Constructor for CannotGetJdbcConnectionException.
52+
* Constructor for {@code CannotGetJdbcConnectionException}.
5353
* @param msg the detail message
5454
* @param ex the root cause IllegalStateException
55+
* @since 5.3.22
5556
*/
5657
public CannotGetJdbcConnectionException(String msg, IllegalStateException ex) {
5758
super(msg, ex);
5859
}
60+
5961
}

0 commit comments

Comments
 (0)