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
The following commit(s) were added to refs/heads/master by this push: new a4bf0768 Javadoc a4bf0768 is described below commit a4bf0768edd5f37831a97b16365cc6547ef4f0a4 Author: Gary David Gregory (Code signing key) <ggreg...@apache.org> AuthorDate: Mon Nov 21 10:13:52 2022 -0500 Javadoc --- src/main/java/org/apache/bcel/classfile/ExceptionTable.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/org/apache/bcel/classfile/ExceptionTable.java b/src/main/java/org/apache/bcel/classfile/ExceptionTable.java index 4bb5169c..7b914e92 100644 --- a/src/main/java/org/apache/bcel/classfile/ExceptionTable.java +++ b/src/main/java/org/apache/bcel/classfile/ExceptionTable.java @@ -31,6 +31,14 @@ import org.apache.commons.lang3.ArrayUtils; * Specification, Second Edition defines this attribute using the name <em>Exceptions</em> (which is inconsistent with * the other classes). * + * <pre> + * Exceptions_attribute { + * u2 attribute_name_index; + * u4 attribute_length; + * u2 number_of_exceptions; + * u2 exception_index_table[number_of_exceptions]; + * } + * </pre> * @see Code */ public final class ExceptionTable extends Attribute {