This is an automated email from the ASF dual-hosted git repository. ggregory pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-compress.git
from 0969a95a6 Bump github/codeql-action from 3.28.15 to 3.28.16 (#667) new 6c4474f3f Throw a better exception in org.apache.commons.compress.archivers.sevenz.SevenZFile.readFilesInfo(ByteBuffer, Archive) new b505079ad Add org.apache.commons.compress.compressors.CompressorException as the root for all custom exceptions ArchiveException and CompressorException new 9592c977a DumpArchiveException now extends ArchiveException instead of IOException (ArchiveException extends IOException) new ad42f9b1c Javadoc new ff86a0948 MemoryLimitException now extends CompressException instead of IOException (CompressException extends IOException) new c1b765ab8 PasswordRequiredException now extends CompressException instead of IOException (CompressException extends IOException) new dae91be83 Pack200Exception now extends CompressException instead of IOException (CompressException extends IOException) new 354788aaf ArArchiveInputStream.getBSDLongName(String) now throws its EOFException with a message new 4f6b08190 Don't use deprecated API new 52434dd1e Inline single use local variable The 10 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: src/changes/changes.xml | 10 +++ .../apache/commons/compress/CompressException.java | 95 ++++++++++++++++++++++ .../commons/compress/MemoryLimitException.java | 4 +- .../compress/PasswordRequiredException.java | 4 +- .../compress/archivers/ArchiveException.java | 54 +++++++++++- .../compress/archivers/ArchiveStreamFactory.java | 6 +- .../archivers/ar/ArArchiveInputStream.java | 2 +- .../archivers/arj/ArjArchiveInputStream.java | 4 +- .../archivers/dump/DumpArchiveException.java | 4 +- .../archivers/dump/DumpArchiveInputStream.java | 4 +- .../compress/archivers/sevenz/SevenZFile.java | 7 +- .../compress/compressors/CompressorException.java | 4 +- .../compress/harmony/pack200/Pack200Exception.java | 4 +- .../utils/FixedLengthBlockOutputStream.java | 3 +- 14 files changed, 177 insertions(+), 28 deletions(-) create mode 100644 src/main/java/org/apache/commons/compress/CompressException.java