diff options
author | Karen Lease <klease@apache.org> | 2000-11-15 22:53:38 +0000 |
---|---|---|
committer | Karen Lease <klease@apache.org> | 2000-11-15 22:53:38 +0000 |
commit | 273bbf402d7a18f590d9e1216349fb51c2589e9c (patch) | |
tree | 36f1c750a1e6b3941c2fb0f4c29c5c18161bcf4a /src | |
parent | 6826b60436ca5944e7b39e4bb87abb6aac101b27 (diff) | |
download | xmlgraphics-fop-273bbf402d7a18f590d9e1216349fb51c2589e9c.tar.gz xmlgraphics-fop-273bbf402d7a18f590d9e1216349fb51c2589e9c.zip |
Make the constructor public
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193816 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/org/apache/fop/fo/expr/PropertyException.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |