This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git
commit 278f169c173c5e6d833fe5283a28e85bf0faf239 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Jul 3 12:53:53 2022 -0400 Javadoc --- .../org/apache/commons/dbcp2/LifetimeExceededException.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/dbcp2/LifetimeExceededException.java b/src/main/java/org/apache/commons/dbcp2/LifetimeExceededException.java index 4344b5d1..ff48941f 100644 --- a/src/main/java/org/apache/commons/dbcp2/LifetimeExceededException.java +++ b/src/main/java/org/apache/commons/dbcp2/LifetimeExceededException.java @@ -28,18 +28,17 @@ class LifetimeExceededException extends SQLException { private static final long serialVersionUID = -3783783104516492659L; /** - * Create a LifetimeExceededException. + * Constructs a new instance. */ public LifetimeExceededException() { } /** - * Create a LifetimeExceededException with the given message. + * Constructs a new instance with the given message. * - * @param message - * The message with which to create the exception + * @param reason a description of the exception */ - public LifetimeExceededException(final String message) { - super(message); + public LifetimeExceededException(final String reason) { + super(reason); } }