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
commit 9f2f97925fdb52b5a3a32da6337ea1f113a3be82 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Feb 17 11:09:30 2024 -0500 Pack200Exception extends IOException --- .../commons/compress/harmony/pack200/Pack200Exception.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/harmony/pack200/Pack200Exception.java b/src/main/java/org/apache/commons/compress/harmony/pack200/Pack200Exception.java index 16a5a2f56..1ba3f0156 100644 --- a/src/main/java/org/apache/commons/compress/harmony/pack200/Pack200Exception.java +++ b/src/main/java/org/apache/commons/compress/harmony/pack200/Pack200Exception.java @@ -16,17 +16,19 @@ */ package org.apache.commons.compress.harmony.pack200; +import java.io.IOException; + /** - * Represents a problem with a Pack200 coding/decoding issue. + * Signals a problem with a Pack200 coding or decoding issue. */ -public class Pack200Exception extends Exception { +public class Pack200Exception extends IOException { private static final long serialVersionUID = 5168177401552611803L; /** - * Creates a new Pack200 exception with the given message + * Constructs a new Pack200 exception with the given message * - * @param message the text message to display + * @param message The detail message (which is saved for later retrieval by the {@link #getMessage()} method). */ public Pack200Exception(final String message) { super(message);