diff options
Diffstat (limited to 'java/src/hdf/hdf5lib/exceptions/HDF5AtomException.java')
-rw-r--r-- | java/src/hdf/hdf5lib/exceptions/HDF5AtomException.java | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/java/src/hdf/hdf5lib/exceptions/HDF5AtomException.java b/java/src/hdf/hdf5lib/exceptions/HDF5AtomException.java index ee1b21f..a1473c4 100644 --- a/java/src/hdf/hdf5lib/exceptions/HDF5AtomException.java +++ b/java/src/hdf/hdf5lib/exceptions/HDF5AtomException.java @@ -24,9 +24,7 @@ public class HDF5AtomException extends HDF5LibraryException { * Constructs an <code>HDF5AtomException</code> with no specified detail * message. */ - public HDF5AtomException() { - super(); - } + public HDF5AtomException() { super(); } /** * Constructs an <code>HDF5AtomException</code> with the specified detail @@ -35,8 +33,5 @@ public class HDF5AtomException extends HDF5LibraryException { * @param s * the detail message. */ - public HDF5AtomException(String s) { - super(s); - } - + public HDF5AtomException(String s) { super(s); } } |