update exception message

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1919091 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2024-07-10 11:39:27 +00:00
parent 302b43641f
commit a0008d6764
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public final class ZipPartMarshaller implements PartMarshaller {
throws OpenXML4JException {
if (!(os instanceof ZipArchiveOutputStream)) {
LOG.atError().log("Unexpected class {}", os.getClass().getName());
throw new OpenXML4JException("ZipOutputStream expected !");
throw new OpenXML4JException("ZipArchiveOutputStream expected !");
// Normally should happen only in development phase, so just throw
// exception
}