From 290c33e88a2fbc430d52e3754813e6519193982c Mon Sep 17 00:00:00 2001 From: Keiron Liddle Date: Mon, 12 Nov 2001 07:35:17 +0000 Subject: [PATCH] clarified error message git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194564 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/apps/Starter.java | 5 +++-- 1 file 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); } } -- 2.39.5