From 5650e20edde0e3c3df305975404face0f1d1fe2b Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 1 Jul 2022 10:42:23 +0200 Subject: [PATCH] Polishing --- .../jdbc/CannotGetJdbcConnectionException.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-jdbc/src/main/java/org/springframework/jdbc/CannotGetJdbcConnectionException.java b/spring-jdbc/src/main/java/org/springframework/jdbc/CannotGetJdbcConnectionException.java index 56ed71fa53b..1439b89db13 100644 --- a/spring-jdbc/src/main/java/org/springframework/jdbc/CannotGetJdbcConnectionException.java +++ b/spring-jdbc/src/main/java/org/springframework/jdbc/CannotGetJdbcConnectionException.java @@ -31,7 +31,7 @@ import org.springframework.lang.Nullable; public class CannotGetJdbcConnectionException extends DataAccessResourceFailureException { /** - * Constructor for CannotGetJdbcConnectionException. + * Constructor for {@code CannotGetJdbcConnectionException}. * @param msg the detail message * @since 5.0 */ @@ -40,7 +40,7 @@ public class CannotGetJdbcConnectionException extends DataAccessResourceFailureE } /** - * Constructor for CannotGetJdbcConnectionException. + * Constructor for {@code CannotGetJdbcConnectionException}. * @param msg the detail message * @param ex the root cause SQLException */ @@ -49,7 +49,7 @@ public class CannotGetJdbcConnectionException extends DataAccessResourceFailureE } /** - * Constructor for CannotGetJdbcConnectionException. + * Constructor for {@code CannotGetJdbcConnectionException}. * @param msg the detail message * @param ex the root cause IllegalStateException * @since 5.3.22 @@ -57,4 +57,5 @@ public class CannotGetJdbcConnectionException extends DataAccessResourceFailureE public CannotGetJdbcConnectionException(String msg, IllegalStateException ex) { super(msg, ex); } + }