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 6e5095f4a57428cc6375aaa57498c0da4bb2e054 Author: Gary Gregory <[email protected]> AuthorDate: Sat Feb 14 08:59:59 2026 -0500 Javadoc --- .../exc/StaticCodeInstructionOperandConstraintException.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/bcel/verifier/exc/StaticCodeInstructionOperandConstraintException.java b/src/main/java/org/apache/bcel/verifier/exc/StaticCodeInstructionOperandConstraintException.java index bfbda883..e0da7ef6 100644 --- a/src/main/java/org/apache/bcel/verifier/exc/StaticCodeInstructionOperandConstraintException.java +++ b/src/main/java/org/apache/bcel/verifier/exc/StaticCodeInstructionOperandConstraintException.java @@ -28,6 +28,11 @@ package org.apache.bcel.verifier.exc; public class StaticCodeInstructionOperandConstraintException extends StaticCodeConstraintException { private static final long serialVersionUID = 4780787099381933487L; + /** + * Constructs a StaticCodeInstructionOperandConstraintException. + * + * @param message the exception message. + */ public StaticCodeInstructionOperandConstraintException(final String message) { super(message); }
