diff options
Diffstat (limited to 'examples/plan/src/org')
-rw-r--r-- | examples/plan/src/org/apache/fop/plan/PlanElement.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/plan/src/org/apache/fop/plan/PlanElement.java b/examples/plan/src/org/apache/fop/plan/PlanElement.java index bdf6ec7fa..7bec2861d 100644 --- a/examples/plan/src/org/apache/fop/plan/PlanElement.java +++ b/examples/plan/src/org/apache/fop/plan/PlanElement.java @@ -20,13 +20,13 @@ package org.apache.fop.plan; import java.awt.geom.Point2D; +import org.apache.fop.apps.FOPException; import org.apache.fop.fo.FONode; import org.apache.fop.fo.PropertyList; import org.w3c.dom.Document; import org.xml.sax.Attributes; import org.xml.sax.Locator; -import org.xml.sax.SAXParseException; /** * This class defines the plan element. @@ -50,7 +50,7 @@ public class PlanElement extends PlanObj { */ public void processNode(String elementName, Locator locator, Attributes attlist, PropertyList propertyList) - throws SAXParseException + throws FOPException { super.processNode(elementName, locator, attlist, propertyList); createBasicDocument(); |