pbwest 2002/07/03 17:54:38
Modified: src/org/apache/fop/fo/expr Tag: FOP_0-20-0_Alt-Design
PropertyException.java
Log:
Extends FOPException, rather than Exception. Added constructor with Throwable arg.
Added ident keywords.
Revision Changes Path
No revision
No revision
1.3.4.1 +11 -2 xml-fop/src/org/apache/fop/fo/expr/PropertyException.java
Index: PropertyException.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/fo/expr/PropertyException.java,v
retrieving revision 1.3
retrieving revision 1.3.4.1
diff -u -r1.3 -r1.3.4.1
--- PropertyException.java 30 Jul 2001 20:29:21 -0000 1.3
+++ PropertyException.java 4 Jul 2002 00:54:38 -0000 1.3.4.1
@@ -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);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]