diff options
author | Jeremias Maerki <jeremias@apache.org> | 2008-07-16 09:10:02 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2008-07-16 09:10:02 +0000 |
commit | b11934f81509eafde584354e41981a656c3d4d39 (patch) | |
tree | 878c56ee5db1fa989ebb9fff4fbd56fb377c9964 /src/java/org/apache/fop/render/intermediate/IFException.java | |
parent | 8e94b3ad33854852846b6333e09e7cd38a2cc5e0 (diff) | |
download | xmlgraphics-fop-b11934f81509eafde584354e41981a656c3d4d39.tar.gz xmlgraphics-fop-b11934f81509eafde584354e41981a656c3d4d39.zip |
Renamed "iform" package to "intermediate" (iform was too cryptic for my taste)
Changed IFRenderer to work against the IFPainter interface.
Started IFPainter implementations for the IF format (IFSerializer), SVG 1.1 and SVG Print. They currently support very simple FOs only (like examples/fo/basic/simple.fo).
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AreaTreeNewDesign@677204 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/render/intermediate/IFException.java')
-rw-r--r-- | src/java/org/apache/fop/render/intermediate/IFException.java | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/render/intermediate/IFException.java b/src/java/org/apache/fop/render/intermediate/IFException.java new file mode 100644 index 000000000..c3f17f9ca --- /dev/null +++ b/src/java/org/apache/fop/render/intermediate/IFException.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* $Id$ */ + +package org.apache.fop.render.intermediate; + +/** + * Exception thrown by code dealing with FOP's intermediate format. + */ +public class IFException extends Exception { + + private static final long serialVersionUID = 0L; + + /** + * Constructs a new exception with the specified detail message and + * cause. <p>Note that the detail message associated with + * <code>cause</code> is <i>not</i> automatically incorporated in + * this exception's detail message. + * + * @param message the detail message (which is saved for later retrieval + * by the {@link #getMessage()} method). + * @param cause the cause (which is saved for later retrieval by the + * {@link #getCause()} method). (A <tt>null</tt> value is + * permitted, and indicates that the cause is nonexistent or + * unknown.) + */ + public IFException(String message, Exception cause) { + super(message, cause); + } + +} |