aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/fo/flow/Footnote.java
diff options
context:
space:
mode:
authorGlen Mazza <gmazza@apache.org>2004-07-27 05:12:41 +0000
committerGlen Mazza <gmazza@apache.org>2004-07-27 05:12:41 +0000
commit33e6293e88e33dfba73f66e7afee63323f884119 (patch)
tree2a183b55f5239ae64000564ad13e0468c5eba333 /src/java/org/apache/fop/fo/flow/Footnote.java
parentdbefd55bda61baaac9c6c068e94166ec740f9eea (diff)
downloadxmlgraphics-fop-33e6293e88e33dfba73f66e7afee63323f884119.tar.gz
xmlgraphics-fop-33e6293e88e33dfba73f66e7afee63323f884119.zip
Switch from IllegalArgumentException to SAXParseException for errors found in the input FO.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197843 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/Footnote.java')
-rw-r--r--src/java/org/apache/fop/fo/flow/Footnote.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Footnote.java b/src/java/org/apache/fop/fo/flow/Footnote.java
index f72ddd403..1575a81f7 100644
--- a/src/java/org/apache/fop/fo/flow/Footnote.java
+++ b/src/java/org/apache/fop/fo/flow/Footnote.java
@@ -21,6 +21,7 @@ package org.apache.fop.fo.flow;
// XML
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
+import org.xml.sax.SAXParseException;
// FOP
import org.apache.fop.apps.FOPException;
@@ -78,7 +79,7 @@ public class Footnote extends FObj {
fotv.serveFootnote(this);
}
- protected void endOfNode() {
+ protected void endOfNode() throws SAXParseException {
super.endOfNode();
getFOInputHandler().endFootnote(this);
}