Skip to content

Commit 490c43e

Browse files
committed
Javadoc
1 parent b310327 commit 490c43e

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/main/java/org/apache/commons/configuration2/ex/ConfigurationException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public ConfigurationException(final String format, final Object... params) {
5656
/**
5757
* Constructs a new {@code ConfigurationException} with specified detail message and nested {@code Throwable}.
5858
*
59-
* @param message the error message
59+
* @param message the error message.
6060
* @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method). (A {@code null} value is permitted, and indicates that
6161
* the cause is nonexistent or unknown.)
6262
*/
@@ -67,7 +67,7 @@ public ConfigurationException(final String message, final Throwable cause) {
6767
/**
6868
* Constructs a new {@code ConfigurationException} with specified nested {@code Throwable}.
6969
*
70-
* @param cause the exception or error that caused this exception to be thrown
70+
* @param cause the exception or error that caused this exception to be thrown.
7171
*/
7272
public ConfigurationException(final Throwable cause) {
7373
super(cause);

src/main/java/org/apache/commons/configuration2/ex/ConfigurationRuntimeException.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ public ConfigurationRuntimeException(final String message) {
4747
/**
4848
* Constructs a new {@code ConfigurationRuntimeException} with specified detail message using {@link String#format(String,Object...)}.
4949
*
50-
* @param message the error message
51-
* @param args arguments to the error message
50+
* @param message the error message.
51+
* @param args arguments to the error message.
5252
* @see String#format(String,Object...)
5353
*/
5454
public ConfigurationRuntimeException(final String message, final Object... args) {
@@ -58,8 +58,8 @@ public ConfigurationRuntimeException(final String message, final Object... args)
5858
/**
5959
* Constructs a new {@code ConfigurationRuntimeException} with specified detail message and nested {@code Throwable}.
6060
*
61-
* @param message the error message
62-
* @param cause the exception or error that caused this exception to be thrown
61+
* @param message the error message.
62+
* @param cause the exception or error that caused this exception to be thrown.
6363
*/
6464
public ConfigurationRuntimeException(final String message, final Throwable cause) {
6565
super(message, cause);
@@ -68,7 +68,7 @@ public ConfigurationRuntimeException(final String message, final Throwable cause
6868
/**
6969
* Constructs a new {@code ConfigurationRuntimeException} with specified nested {@code Throwable}.
7070
*
71-
* @param cause the exception or error that caused this exception to be thrown
71+
* @param cause the exception or error that caused this exception to be thrown.
7272
*/
7373
public ConfigurationRuntimeException(final Throwable cause) {
7474
super(cause);

src/main/java/org/apache/commons/configuration2/ex/ConversionException.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public ConversionException(final String format, final Object... params) {
5858
/**
5959
* Constructs a new {@code ConversionException} with specified detail message and nested {@code Throwable}.
6060
*
61-
* @param message the error message
62-
* @param cause the exception or error that caused this exception to be thrown
61+
* @param message the error message.
62+
* @param cause the exception or error that caused this exception to be thrown.
6363
*/
6464
public ConversionException(final String message, final Throwable cause) {
6565
super(message, cause);
@@ -68,7 +68,7 @@ public ConversionException(final String message, final Throwable cause) {
6868
/**
6969
* Constructs a new {@code ConversionException} with specified nested {@code Throwable}.
7070
*
71-
* @param cause the exception or error that caused this exception to be thrown
71+
* @param cause the exception or error that caused this exception to be thrown.
7272
*/
7373
public ConversionException(final Throwable cause) {
7474
super(cause);

0 commit comments

Comments
 (0)