diff options
author | Rainer Klute <klute@apache.org> | 2003-08-02 19:02:28 +0000 |
---|---|---|
committer | Rainer Klute <klute@apache.org> | 2003-08-02 19:02:28 +0000 |
commit | a47c0bb61d25cb893b5dbce92262dd39adc2101d (patch) | |
tree | 793d8229a533c5dc202ca24fe9a9e6460d8b2143 /src/java/org/apache/poi/hpsf/IllegalPropertySetDataException.java | |
parent | 0441b49c0539ac873d3e2f5393c0f25dcc5ef0df (diff) | |
download | poi-a47c0bb61d25cb893b5dbce92262dd39adc2101d.tar.gz poi-a47c0bb61d25cb893b5dbce92262dd39adc2101d.zip |
Javadoc, formatting and style improvements
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353280 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/hpsf/IllegalPropertySetDataException.java')
-rw-r--r-- | src/java/org/apache/poi/hpsf/IllegalPropertySetDataException.java | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/hpsf/IllegalPropertySetDataException.java b/src/java/org/apache/poi/hpsf/IllegalPropertySetDataException.java index 25764df390..378b1874d1 100644 --- a/src/java/org/apache/poi/hpsf/IllegalPropertySetDataException.java +++ b/src/java/org/apache/poi/hpsf/IllegalPropertySetDataException.java @@ -69,6 +69,9 @@ package org.apache.poi.hpsf; public class IllegalPropertySetDataException extends HPSFRuntimeException { + /** + * <p>Constructor</p> + */ public IllegalPropertySetDataException() { super(); @@ -76,6 +79,11 @@ public class IllegalPropertySetDataException extends HPSFRuntimeException + /** + * <p>Constructor</p> + * + * @param msg The exception's message string + */ public IllegalPropertySetDataException(final String msg) { super(msg); @@ -83,6 +91,11 @@ public class IllegalPropertySetDataException extends HPSFRuntimeException + /** + * <p>Constructor</p> + * + * @param reason This exception's underlying reason + */ public IllegalPropertySetDataException(final Throwable reason) { super(reason); @@ -90,10 +103,16 @@ public class IllegalPropertySetDataException extends HPSFRuntimeException + /** + * <p>Constructor</p> + * + * @param msg The exception's message string + * @param reason This exception's underlying reason + */ public IllegalPropertySetDataException(final String msg, final Throwable reason) { - super(msg,reason); + super(msg, reason); } } |