summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJordan Naftolin <jordan@apache.org>2000-06-21 01:18:03 +0000
committerJordan Naftolin <jordan@apache.org>2000-06-21 01:18:03 +0000
commit603097959ed8b8da6022acd562db6ff6e87c52a3 (patch)
tree90e1d2a05aafc0898a782e95b66bdfac786acb56 /src
parentc5b325a0babb4637e8b1b70db86f547619ee10ea (diff)
downloadxmlgraphics-fop-603097959ed8b8da6022acd562db6ff6e87c52a3.tar.gz
xmlgraphics-fop-603097959ed8b8da6022acd562db6ff6e87c52a3.zip
Added ability for render() to throw FOPException
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193409 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/org/apache/fop/apps/Driver.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/apache/fop/apps/Driver.java b/src/org/apache/fop/apps/Driver.java
index dd6ddb841..f2a185569 100644
--- a/src/org/apache/fop/apps/Driver.java
+++ b/src/org/apache/fop/apps/Driver.java
@@ -349,7 +349,7 @@ public class Driver {
* render the area tree to the output form
*/
public void render()
- throws IOException {
+ throws IOException, FOPException {
this.renderer.render(areaTree, this.writer);
}
}