From: Peter Bernard West Date: Thu, 4 Jul 2002 00:54:38 +0000 (+0000) Subject: Extends FOPException, rather than Exception. Added constructor with Throwable arg... X-Git-Tag: Alt-Design_pre_Properties_split~175 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6fb13491e211dfeb3586c57cbef176fdb8e19cf6;p=xmlgraphics-fop.git Extends FOPException, rather than Exception. Added constructor with Throwable arg. Added ident keywords. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@194951 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/fo/expr/PropertyException.java b/src/org/apache/fop/fo/expr/PropertyException.java index d73c37734..c83e22f30 100644 --- a/src/org/apache/fop/fo/expr/PropertyException.java +++ b/src/org/apache/fop/fo/expr/PropertyException.java @@ -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); + } + }