aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Burch <nick@apache.org>2015-08-24 21:20:01 +0000
committerNick Burch <nick@apache.org>2015-08-24 21:20:01 +0000
commit5204aacf5489be00c2fd5cced71414bfeec86aa2 (patch)
tree9b79ec723f3fd45303786af7fb7a861e0cc73186
parentf46ad8fd132493b06531e35b254f7b9de2eae7ec (diff)
downloadpoi-5204aacf5489be00c2fd5cced71414bfeec86aa2.tar.gz
poi-5204aacf5489be00c2fd5cced71414bfeec86aa2.zip
Tweak error message to make clear that we really need a file showing the problem
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1697502 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/ooxml/java/org/apache/poi/openxml4j/opc/internal/ContentTypeManager.java2
1 files changed, 1 insertions, 1 deletions
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 6b71d0dbe9..423485856f 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
@@ -340,7 +340,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, if so please send a mail to the developers team, thanks !");
+ "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!");
}
return null;
}