From: Dominik Stadler Date: Sun, 29 May 2016 21:33:39 +0000 (+0000) Subject: Update error message to better indicate that we need a sample-file here X-Git-Tag: REL_3_15_BETA2~219 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=170fa46359162b7ad63b9135050e0e5675d36aca;p=poi.git Update error message to better indicate that we need a sample-file here git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1746061 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/ooxml/java/org/apache/poi/openxml4j/opc/internal/ContentTypeManager.java b/src/ooxml/java/org/apache/poi/openxml4j/opc/internal/ContentTypeManager.java index cc8550b903..537dd15e91 100644 --- a/src/ooxml/java/org/apache/poi/openxml4j/opc/internal/ContentTypeManager.java +++ b/src/ooxml/java/org/apache/poi/openxml4j/opc/internal/ContentTypeManager.java @@ -341,7 +341,7 @@ public abstract class ContentTypeManager { */ if (this.container != null && this.container.getPart(partName) != null) { throw new OpenXML4JRuntimeException( - "Rule M2.4 exception : this error should NEVER happen! Please raise a bug at https://bz.apache.org/bugzilla/enter_bug.cgi?product=POI and attach a file that triggers it, thanks!"); + "Rule M2.4 exception : this error should NEVER happen! If you can provide the triggering file, then please raise a bug at https://bz.apache.org/bugzilla/enter_bug.cgi?product=POI and attach the file that triggers it, thanks!"); } return null; }