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 c8ff150d7313397be4d125e30a992bf647d2bae8 Author: Gary Gregory <[email protected]> AuthorDate: Fri Jan 9 15:39:47 2026 -0500 Javadoc --- .../java/org/apache/bcel/generic/ClassGenException.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/main/java/org/apache/bcel/generic/ClassGenException.java b/src/main/java/org/apache/bcel/generic/ClassGenException.java index 1b6c3b4f..28aef9ef 100644 --- a/src/main/java/org/apache/bcel/generic/ClassGenException.java +++ b/src/main/java/org/apache/bcel/generic/ClassGenException.java @@ -25,13 +25,27 @@ public class ClassGenException extends RuntimeException { private static final long serialVersionUID = 7247369755051242791L; + /** + * Constructs a new ClassGenException. + */ public ClassGenException() { } + /** + * Constructs a new ClassGenException with the specified message. + * + * @param s the error message. + */ public ClassGenException(final String s) { super(s); } + /** + * Constructs a new ClassGenException with the specified message and cause. + * + * @param s the error message. + * @param initCause the cause. + */ public ClassGenException(final String s, final Throwable initCause) { super(s, initCause); }
