diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2016-11-27 20:19:18 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2016-11-27 20:19:18 +0000 |
commit | 00d574164e809f29620c313447cf1a829badc339 (patch) | |
tree | 56f8d3e30056dcedf7435e93b8e078dc1712ed9b /src/java/org/apache/poi/hpsf/NoFormatIDException.java | |
parent | c47c780b63abf187b71894d99990e232c3d3df3a (diff) | |
download | poi-00d574164e809f29620c313447cf1a829badc339.tar.gz poi-00d574164e809f29620c313447cf1a829badc339.zip |
#60331 - Remove deprecated classes - deprecate Mutable* property classes
sonarcube fix - make protected attributes private
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1771640 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/hpsf/NoFormatIDException.java')
-rw-r--r-- | src/java/org/apache/poi/hpsf/NoFormatIDException.java | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/src/java/org/apache/poi/hpsf/NoFormatIDException.java b/src/java/org/apache/poi/hpsf/NoFormatIDException.java index f1a09438e1..51f76c3486 100644 --- a/src/java/org/apache/poi/hpsf/NoFormatIDException.java +++ b/src/java/org/apache/poi/hpsf/NoFormatIDException.java @@ -18,53 +18,47 @@ package org.apache.poi.hpsf; /** - * <p>This exception is thrown if a {@link MutablePropertySet} is to be written - * but does not have a formatID set (see {@link - * MutableSection#setFormatID(ClassID)} or - * {@link org.apache.poi.hpsf.MutableSection#setFormatID(byte[])}. + * This exception is thrown if a {@link PropertySet} is to be written + * but does not have a formatID set (see {@link Section#setFormatID(ClassID)} or + * {@link org.apache.poi.hpsf.Section#setFormatID(byte[])}. */ -public class NoFormatIDException extends HPSFRuntimeException -{ +public class NoFormatIDException extends HPSFRuntimeException { /** - * <p>Constructor</p> + * Constructor */ - public NoFormatIDException() - { + public NoFormatIDException() { super(); } /** - * <p>Constructor</p> + * Constructor * * @param msg The exception's message string */ - public NoFormatIDException(final String msg) - { + public NoFormatIDException(final String msg) { super(msg); } /** - * <p>Constructor</p> + * Constructor * * @param reason This exception's underlying reason */ - public NoFormatIDException(final Throwable reason) - { + public NoFormatIDException(final Throwable reason) { super(reason); } /** - * <p>Constructor</p> + * Constructor * * @param msg The exception's message string * @param reason This exception's underlying reason */ - public NoFormatIDException(final String msg, final Throwable reason) - { + public NoFormatIDException(final String msg, final Throwable reason) { super(msg, reason); } |