This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/commons-xml.git
commit 0dd96ba87be1a2e3bda57bc5451b98aeb591f613 Author: Gary Gregory <[email protected]> AuthorDate: Sat Aug 1 14:47:04 2026 -0400 Make package private class HardeningException final --- src/main/java/org/apache/commons/xml/HardeningException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/xml/HardeningException.java b/src/main/java/org/apache/commons/xml/HardeningException.java index c549428..5bd6d45 100644 --- a/src/main/java/org/apache/commons/xml/HardeningException.java +++ b/src/main/java/org/apache/commons/xml/HardeningException.java @@ -31,7 +31,7 @@ * * <p>Package-private by design: callers should catch {@link IllegalStateException}, which this extends.</p> */ -class HardeningException extends IllegalStateException { +final class HardeningException extends IllegalStateException { private static final long serialVersionUID = 1L;
