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 60f4e2a887eecec81348a78c62e13ad65979c218 Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 14 08:59:56 2026 -0500 Javadoc --- src/main/java/org/apache/bcel/generic/TargetLostException.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/org/apache/bcel/generic/TargetLostException.java b/src/main/java/org/apache/bcel/generic/TargetLostException.java index e662e6e0..fd3b38f0 100644 --- a/src/main/java/org/apache/bcel/generic/TargetLostException.java +++ b/src/main/java/org/apache/bcel/generic/TargetLostException.java @@ -48,8 +48,16 @@ package org.apache.bcel.generic; public final class TargetLostException extends Exception { private static final long serialVersionUID = -6857272667645328384L; + + /** The target instruction handles that were lost. */ private final InstructionHandle[] targets; + /** + * Constructs a TargetLostException. + * + * @param targets the instruction handles. + * @param message the exception message. + */ TargetLostException(final InstructionHandle[] targets, final String message) { super(message); this.targets = targets;
