From: Karen Lease Date: Wed, 15 Nov 2000 22:53:38 +0000 (+0000) Subject: Make the constructor public X-Git-Tag: pre-columns~70 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=273bbf402d7a18f590d9e1216349fb51c2589e9c;p=xmlgraphics-fop.git Make the constructor public git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193816 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 814d20822..2e0f17b50 100644 --- a/src/org/apache/fop/fo/expr/PropertyException.java +++ b/src/org/apache/fop/fo/expr/PropertyException.java @@ -51,7 +51,7 @@ package org.apache.fop.fo.expr; public class PropertyException extends Exception { - PropertyException(String detail) { + public PropertyException(String detail) { super(detail); } }