This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-configuration.git
The following commit(s) were added to refs/heads/master by this push:
new 490c43e09 Javadoc
490c43e09 is described below
commit 490c43e09283c70198388742171583054df9be48
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Apr 26 09:44:28 2026 -0400
Javadoc
---
.../commons/configuration2/ex/ConfigurationException.java | 4 ++--
.../configuration2/ex/ConfigurationRuntimeException.java | 10 +++++-----
.../apache/commons/configuration2/ex/ConversionException.java | 6 +++---
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git
a/src/main/java/org/apache/commons/configuration2/ex/ConfigurationException.java
b/src/main/java/org/apache/commons/configuration2/ex/ConfigurationException.java
index 5a2ecf70b..6e5553d25 100644
---
a/src/main/java/org/apache/commons/configuration2/ex/ConfigurationException.java
+++
b/src/main/java/org/apache/commons/configuration2/ex/ConfigurationException.java
@@ -56,7 +56,7 @@ public class ConfigurationException extends Exception {
/**
* Constructs a new {@code ConfigurationException} with specified detail
message and nested {@code Throwable}.
*
- * @param message the error message
+ * @param message the error message.
* @param cause the cause (which is saved for later retrieval by the
{@link #getCause()} method). (A {@code null} value is permitted, and indicates
that
* the cause is nonexistent or unknown.)
*/
@@ -67,7 +67,7 @@ public class ConfigurationException extends Exception {
/**
* Constructs a new {@code ConfigurationException} with specified nested
{@code Throwable}.
*
- * @param cause the exception or error that caused this exception to be
thrown
+ * @param cause the exception or error that caused this exception to be
thrown.
*/
public ConfigurationException(final Throwable cause) {
super(cause);
diff --git
a/src/main/java/org/apache/commons/configuration2/ex/ConfigurationRuntimeException.java
b/src/main/java/org/apache/commons/configuration2/ex/ConfigurationRuntimeException.java
index 729d4b6a5..2cdaaae1f 100644
---
a/src/main/java/org/apache/commons/configuration2/ex/ConfigurationRuntimeException.java
+++
b/src/main/java/org/apache/commons/configuration2/ex/ConfigurationRuntimeException.java
@@ -47,8 +47,8 @@ public class ConfigurationRuntimeException extends
RuntimeException {
/**
* Constructs a new {@code ConfigurationRuntimeException} with specified
detail message using {@link String#format(String,Object...)}.
*
- * @param message the error message
- * @param args arguments to the error message
+ * @param message the error message.
+ * @param args arguments to the error message.
* @see String#format(String,Object...)
*/
public ConfigurationRuntimeException(final String message, final Object...
args) {
@@ -58,8 +58,8 @@ public class ConfigurationRuntimeException extends
RuntimeException {
/**
* Constructs a new {@code ConfigurationRuntimeException} with specified
detail message and nested {@code Throwable}.
*
- * @param message the error message
- * @param cause the exception or error that caused this exception to be
thrown
+ * @param message the error message.
+ * @param cause the exception or error that caused this exception to be
thrown.
*/
public ConfigurationRuntimeException(final String message, final Throwable
cause) {
super(message, cause);
@@ -68,7 +68,7 @@ public class ConfigurationRuntimeException extends
RuntimeException {
/**
* Constructs a new {@code ConfigurationRuntimeException} with specified
nested {@code Throwable}.
*
- * @param cause the exception or error that caused this exception to be
thrown
+ * @param cause the exception or error that caused this exception to be
thrown.
*/
public ConfigurationRuntimeException(final Throwable cause) {
super(cause);
diff --git
a/src/main/java/org/apache/commons/configuration2/ex/ConversionException.java
b/src/main/java/org/apache/commons/configuration2/ex/ConversionException.java
index 7b2bd6f20..9a371eb6c 100644
---
a/src/main/java/org/apache/commons/configuration2/ex/ConversionException.java
+++
b/src/main/java/org/apache/commons/configuration2/ex/ConversionException.java
@@ -58,8 +58,8 @@ public class ConversionException extends
ConfigurationRuntimeException {
/**
* Constructs a new {@code ConversionException} with specified detail
message and nested {@code Throwable}.
*
- * @param message the error message
- * @param cause the exception or error that caused this exception to be
thrown
+ * @param message the error message.
+ * @param cause the exception or error that caused this exception to be
thrown.
*/
public ConversionException(final String message, final Throwable cause) {
super(message, cause);
@@ -68,7 +68,7 @@ public class ConversionException extends
ConfigurationRuntimeException {
/**
* Constructs a new {@code ConversionException} with specified nested
{@code Throwable}.
*
- * @param cause the exception or error that caused this exception to be
thrown
+ * @param cause the exception or error that caused this exception to be
thrown.
*/
public ConversionException(final Throwable cause) {
super(cause);