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 a6751fe7ad098beffd4d34de0eb642df84c8f894 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 13:09:37 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/classfile/CodeException.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/org/apache/bcel/classfile/CodeException.java b/src/main/java/org/apache/bcel/classfile/CodeException.java index 32a3b5bc..2c4fbd0a 100644 --- a/src/main/java/org/apache/bcel/classfile/CodeException.java +++ b/src/main/java/org/apache/bcel/classfile/CodeException.java @@ -230,11 +230,19 @@ public final class CodeException implements Cloneable, Node, Constants { return "CodeException(startPc = " + startPc + ", endPc = " + endPc + ", handlerPc = " + handlerPc + ", catchType = " + catchType + ")"; } + /** + * Gets a string representation with constant pool. + * + * @param cp constant pool source. + * @return String representation. + */ public String toString(final ConstantPool cp) { return toString(cp, true); } /** + * Gets a string representation with constant pool. + * * @param cp constant pool source. * @param verbose Output more if true. * @return String representation.
