import java.awt.geom.Point2D;
import org.apache.fop.fo.FONode;
-import org.apache.fop.apps.FOPException;
-
import org.w3c.dom.DOMImplementation;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.xml.sax.Attributes;
import org.xml.sax.Locator;
+import org.xml.sax.SAXParseException;
import org.apache.batik.svggen.SVGGraphics2D;
import org.apache.batik.dom.svg.SVGDOMImplementation;
* @see org.apache.fop.fo.FONode#processNode
*/
public void processNode(String elementName, Locator locator,
- Attributes attlist) throws FOPException {
+ Attributes attlist) throws SAXParseException {
super.processNode(elementName, locator, attlist);
createBasicDocument();
}
import java.awt.geom.Point2D;
import org.apache.fop.fo.FONode;
-import org.apache.fop.apps.FOPException;
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.
* @see org.apache.fop.fo.FONode#processNode
*/
public void processNode(String elementName, Locator locator,
- Attributes attlist) throws FOPException {
+ Attributes attlist) throws SAXParseException {
super.processNode(elementName, locator, attlist);
createBasicDocument();
}