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 bc5a5372897d777032a3d94e77aa8c9709d41b4a Author: Gary Gregory <[email protected]> AuthorDate: Fri Jan 9 15:16:11 2026 -0500 Javadoc --- .../apache/bcel/verifier/exc/VerifierConstraintViolatedException.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/bcel/verifier/exc/VerifierConstraintViolatedException.java b/src/main/java/org/apache/bcel/verifier/exc/VerifierConstraintViolatedException.java index 60ce25e3..56f1d533 100644 --- a/src/main/java/org/apache/bcel/verifier/exc/VerifierConstraintViolatedException.java +++ b/src/main/java/org/apache/bcel/verifier/exc/VerifierConstraintViolatedException.java @@ -58,6 +58,9 @@ public abstract class VerifierConstraintViolatedException extends RuntimeExcepti * Extends the error message with a string before ("pre") and after ("post") the 'old' error message. All of these three * strings are allowed to be null, and null is always replaced by the empty string (""). In particular, after invoking * this method, the error message of this object can no longer be null. + * + * @param pre string to prepend. + * @param post string to append. */ public void extendMessage(String pre, String post) { if (pre == null) {
