Skip to content

Commit d3c2bab

Browse files
committed
Javadoc
1 parent b2d7c7e commit d3c2bab

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/main/java/org/apache/commons/jexl3/parser/ParseException.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,18 @@ public ParseException(final Token currentToken, final int[][] expectedTokenSeque
6262
}
6363

6464
/**
65-
* Default ctor.
65+
* Constructs a new exception with {@code null} as its detail message. The cause is not initialized, and may subsequently be initialized by a call to
66+
* {@link #initCause}.
6667
*/
6768
public ParseException() {
6869
}
6970

70-
/** Constructor with message. */
71+
/**
72+
* Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to
73+
* {@link #initCause}.
74+
*
75+
* @param message the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method.
76+
*/
7177
public ParseException(final String message) {
7278
super(message);
7379
}

0 commit comments

Comments
 (0)