diff options
author | Glen Mazza <gmazza@apache.org> | 2004-07-27 05:12:41 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-07-27 05:12:41 +0000 |
commit | 33e6293e88e33dfba73f66e7afee63323f884119 (patch) | |
tree | 2a183b55f5239ae64000564ad13e0468c5eba333 /src/java/org/apache/fop/fo/flow/Footnote.java | |
parent | dbefd55bda61baaac9c6c068e94166ec740f9eea (diff) | |
download | xmlgraphics-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.java | 3 |
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); } |