]> source.dussan.org Git - poi.git/commitdiff
change error message to suggest large files will need overrides
authorPJ Fanning <fanningpj@apache.org>
Sun, 20 Feb 2022 11:27:17 +0000 (11:27 +0000)
committerPJ Fanning <fanningpj@apache.org>
Sun, 20 Feb 2022 11:27:17 +0000 (11:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898250 13f79535-47bb-0310-9956-ffa450edef68

poi/src/main/java/org/apache/poi/util/IOUtils.java

index d05c1387a708d7999ee1855503c479ff912d91ff..1ab9f9cae9547cb336dc8047954ab9006622af1e 100644 (file)
@@ -554,7 +554,7 @@ public final class IOUtils {
     private static void throwRFE(long length, int maxLength) {
         throw new RecordFormatException(String.format(Locale.ROOT, "Tried to allocate an array of length %,d" +
                         ", but the maximum length for this record type is %,d.\n" +
-                        "If the file is not corrupt, please open an issue on bugzilla to request \n" +
+                        "If the file is not corrupt or large, please open an issue on bugzilla to request \n" +
                         "increasing the maximum allowable size for this record type.\n"+
                         "As a temporary workaround, consider setting a higher override value with " +
                         "IOUtils.setByteArrayMaxOverride()",