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-bcel.git
commit febd1a06c1ba8aee8ee9fb3147d2b6ef3fa7d91b Author: Gary Gregory <[email protected]> AuthorDate: Fri Jan 9 15:16:11 2026 -0500 Javadoc --- .../java/org/apache/bcel/verifier/exc/ClassConstraintException.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/verifier/exc/ClassConstraintException.java b/src/main/java/org/apache/bcel/verifier/exc/ClassConstraintException.java index d2a06c37..2b845c0c 100644 --- a/src/main/java/org/apache/bcel/verifier/exc/ClassConstraintException.java +++ b/src/main/java/org/apache/bcel/verifier/exc/ClassConstraintException.java @@ -33,14 +33,18 @@ public class ClassConstraintException extends VerificationException { /** * Constructs a new ClassConstraintException with the specified error message. + * + * @param message the error message. */ public ClassConstraintException(final String message) { super(message); } /** - * Constructs a new ClassConstraintException with the specified error message and cause + * Constructs a new ClassConstraintException with the specified error message and cause. * + * @param message the error message. + * @param initCause the cause. * @since 6.0 */ public ClassConstraintException(final String message, final Throwable initCause) {
