summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/hdf5lib/exceptions/HDF5InternalErrorException.java
diff options
context:
space:
mode:
authorvchoi-hdfgroup <55293060+vchoi-hdfgroup@users.noreply.github.com>2022-04-21 17:09:51 (GMT)
committerGitHub <noreply@github.com>2022-04-21 17:09:51 (GMT)
commit2f86cba3ec7b9f46b84e8cd239a1fee242c15049 (patch)
tree491c1f08a68d92e400d939d96fefdc7bfef57ddc /java/src/hdf/hdf5lib/exceptions/HDF5InternalErrorException.java
parentff7fe9e9af404591d3d50f3b33d190679529bb10 (diff)
parentec14985c8555bda02021568ea20295384a2cef7e (diff)
downloadhdf5-2f86cba3ec7b9f46b84e8cd239a1fee242c15049.zip
hdf5-2f86cba3ec7b9f46b84e8cd239a1fee242c15049.tar.gz
hdf5-2f86cba3ec7b9f46b84e8cd239a1fee242c15049.tar.bz2
Merge pull request #61 from HDFGroup/feature/vfd_swmr
VFD SWMR: Merges from develop (#1670)
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); }
}