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-compress.git
The following commit(s) were added to refs/heads/master by this push: new c63a1404f Javadoc c63a1404f is described below commit c63a1404f7d5c9f1e05a110e3b37b89a62e9bac1 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Apr 9 10:01:00 2025 -0400 Javadoc --- .../commons/compress/archivers/dump/UnrecognizedFormatException.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/archivers/dump/UnrecognizedFormatException.java b/src/main/java/org/apache/commons/compress/archivers/dump/UnrecognizedFormatException.java index 3c0fcfabf..2c762e462 100644 --- a/src/main/java/org/apache/commons/compress/archivers/dump/UnrecognizedFormatException.java +++ b/src/main/java/org/apache/commons/compress/archivers/dump/UnrecognizedFormatException.java @@ -24,6 +24,9 @@ public class UnrecognizedFormatException extends DumpArchiveException { private static final long serialVersionUID = 1L; + /** + * Constructs a {@code UnrecognizedFormatException}. + */ public UnrecognizedFormatException() { super("this is not a recognized format."); }