]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Extend PropertyException
authorPeter Bernard West <pbwest@apache.org>
Mon, 24 Jun 2002 22:28:10 +0000 (22:28 +0000)
committerPeter Bernard West <pbwest@apache.org>
Mon, 24 Jun 2002 22:28:10 +0000 (22:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@194915 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/fo/expr/DataTypeNotImplementedException.java [new file with mode: 0644]
src/org/apache/fop/fo/expr/FunctionNotImplementedException.java [new file with mode: 0644]

diff --git a/src/org/apache/fop/fo/expr/DataTypeNotImplementedException.java b/src/org/apache/fop/fo/expr/DataTypeNotImplementedException.java
new file mode 100644 (file)
index 0000000..6daef15
--- /dev/null
@@ -0,0 +1,15 @@
+/*
+ * $Id$
+ * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * For details on use and redistribution please refer to the
+ * LICENSE file included with these sources.
+ */
+
+package org.apache.fop.fo.expr;
+
+public class DataTypeNotImplementedException extends PropertyException {
+    public DataTypeNotImplementedException(String detail) {
+        super(detail);
+    }
+
+}
diff --git a/src/org/apache/fop/fo/expr/FunctionNotImplementedException.java b/src/org/apache/fop/fo/expr/FunctionNotImplementedException.java
new file mode 100644 (file)
index 0000000..75f3e9b
--- /dev/null
@@ -0,0 +1,15 @@
+/*
+ * $Id$
+ * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * For details on use and redistribution please refer to the
+ * LICENSE file included with these sources.
+ */
+
+package org.apache.fop.fo.expr;
+
+public class FunctionNotImplementedException extends PropertyException {
+    public FunctionNotImplementedException(String detail) {
+        super(detail);
+    }
+
+}