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