summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException.java')
-rw-r--r--java/src/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException.java8
1 files changed, 2 insertions, 6 deletions
diff --git a/java/src/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException.java b/java/src/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException.java
index 7bb22fa..8fd4ae9 100644
--- a/java/src/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException.java
+++ b/java/src/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException.java
@@ -23,9 +23,7 @@ public class HDF5DatasetInterfaceException extends HDF5LibraryException {
* Constructs an <code>HDF5DatasetInterfaceException</code> with no
* specified detail message.
*/
- public HDF5DatasetInterfaceException() {
- super();
- }
+ public HDF5DatasetInterfaceException() { super(); }
/**
* Constructs an <code>HDF5DatasetInterfaceException</code> with the
@@ -34,7 +32,5 @@ public class HDF5DatasetInterfaceException extends HDF5LibraryException {
* @param s
* the detail message.
*/
- public HDF5DatasetInterfaceException(String s) {
- super(s);
- }
+ public HDF5DatasetInterfaceException(String s) { super(s); }
}