]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Extends FOPException, rather than Exception. Added constructor with Throwable arg...
authorPeter Bernard West <pbwest@apache.org>
Thu, 4 Jul 2002 00:54:38 +0000 (00:54 +0000)
committerPeter Bernard West <pbwest@apache.org>
Thu, 4 Jul 2002 00:54:38 +0000 (00:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@194951 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/expr/PropertyException.java

index d73c377340fce536fc242975cf04bedb483c2849..c83e22f300a3a05cb132be17d28bf0c9b7c52cad 100644 (file)
@@ -7,9 +7,18 @@
 
 package org.apache.fop.fo.expr;
 
-public class PropertyException extends Exception {
+import org.apache.fop.apps.FOPException;
+
+public class PropertyException extends FOPException {
+    private static final String tag = "$Name$";
+    private static final String revision = "$Revision$";
+
     public PropertyException(String detail) {
         super(detail);
     }
 
+    public PropertyException(Throwable e) {
+        super(e);
+    }
+
 }