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-jexl.git
The following commit(s) were added to refs/heads/master by this push: new d3c2bab6 Javadoc d3c2bab6 is described below commit d3c2bab6ea2af8180031dca0e6356f0e287f04d7 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed May 29 10:21:54 2024 -0400 Javadoc --- .../java/org/apache/commons/jexl3/parser/ParseException.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/parser/ParseException.java b/src/main/java/org/apache/commons/jexl3/parser/ParseException.java index 9e22cfd4..ea3e6fa1 100644 --- a/src/main/java/org/apache/commons/jexl3/parser/ParseException.java +++ b/src/main/java/org/apache/commons/jexl3/parser/ParseException.java @@ -62,12 +62,18 @@ public class ParseException extends Exception implements JavaccError { } /** - * Default ctor. + * 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 + * {@link #initCause}. */ public ParseException() { } - /** Constructor with message. */ + /** + * Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to + * {@link #initCause}. + * + * @param message the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method. + */ public ParseException(final String message) { super(message); }