Skip to content

Commit 5650e20

Browse files
committed
Polishing
1 parent 2885177 commit 5650e20

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 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,12 +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
5555
* @since 5.3.22
5656
*/
5757
public CannotGetJdbcConnectionException(String msg, IllegalStateException ex) {
5858
super(msg, ex);
5959
}
60+
6061
}

0 commit comments

Comments
 (0)