aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2001-11-12 07:35:17 +0000
committerKeiron Liddle <keiron@apache.org>2001-11-12 07:35:17 +0000
commit290c33e88a2fbc430d52e3754813e6519193982c (patch)
tree133b66918e4811af6c940bda28cdf0779fe56ddd /src/org/apache
parent34bc573995321cdd6277d5897df052f2677f88d1 (diff)
downloadxmlgraphics-fop-290c33e88a2fbc430d52e3754813e6519193982c.tar.gz
xmlgraphics-fop-290c33e88a2fbc430d52e3754813e6519193982c.zip
clarified error message
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194564 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache')
-rw-r--r--src/org/apache/fop/apps/Starter.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/org/apache/fop/apps/Starter.java b/src/org/apache/fop/apps/Starter.java
index 90d63c59b..3f9997e63 100644
--- a/src/org/apache/fop/apps/Starter.java
+++ b/src/org/apache/fop/apps/Starter.java
@@ -48,8 +48,9 @@ public abstract class Starter {
parser.setFeature("http://xml.org/sax/features/namespace-prefixes",
true);
} catch (SAXException e) {
- throw new FOPException("Error in setting up parser feature namespace-prefixes\n"
- + "You need a parser which supports SAX version 2", e);
+ throw new FOPException("Error: You need a parser which allows the"
+ + " http://xml.org/sax/features/namespace-prefixes"
+ + " feature to be set to true to support namespaces", e);
}
}