From: Peter Bernard West Date: Mon, 24 Jun 2002 22:28:10 +0000 (+0000) Subject: Extend PropertyException X-Git-Tag: Alt-Design_pre_Properties_split~194 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a8fc180809c6351bb13efc7e4fda26a5fee6a39e;p=xmlgraphics-fop.git Extend PropertyException git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@194915 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/org/apache/fop/fo/expr/DataTypeNotImplementedException.java b/src/org/apache/fop/fo/expr/DataTypeNotImplementedException.java new file mode 100644 index 000000000..6daef15ee --- /dev/null +++ b/src/org/apache/fop/fo/expr/DataTypeNotImplementedException.java @@ -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 index 000000000..75f3e9be3 --- /dev/null +++ b/src/org/apache/fop/fo/expr/FunctionNotImplementedException.java @@ -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); + } + +}