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 ea5b62e54f763651123fd500880c920733b65655 Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 10 22:50:23 2026 -0500 Javadoc --- .../java/org/apache/bcel/verifier/structurals/ExceptionHandler.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/bcel/verifier/structurals/ExceptionHandler.java b/src/main/java/org/apache/bcel/verifier/structurals/ExceptionHandler.java index a8be210a..881f1d88 100644 --- a/src/main/java/org/apache/bcel/verifier/structurals/ExceptionHandler.java +++ b/src/main/java/org/apache/bcel/verifier/structurals/ExceptionHandler.java @@ -43,6 +43,8 @@ public class ExceptionHandler { /** * Returns the type of the exception that's handled. <strong>'null' means 'ANY'.</strong> + * + * @return the exception type. */ public ObjectType getExceptionType() { return catchType; @@ -50,6 +52,8 @@ public class ExceptionHandler { /** * Returns the InstructionHandle where the handler starts off. + * + * @return the handler start instruction. */ public InstructionHandle getHandlerStart() { return handlerPc;
