Package hdf.hdf5lib.exceptions
Class HDF5InternalErrorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
hdf.hdf5lib.exceptions.HDF5Exception
hdf.hdf5lib.exceptions.HDF5LibraryException
hdf.hdf5lib.exceptions.HDF5InternalErrorException
- All Implemented Interfaces:
java.io.Serializable
public class HDF5InternalErrorException extends HDF5LibraryException
The class HDF5LibraryException returns errors raised by the HDF5 library.
This sub-class represents HDF-5 major error code H5E_INTERNAL
- See Also:
- Serialized Form
-
Field Summary
Fields inherited from class hdf.hdf5lib.exceptions.HDF5Exception
detailMessage
-
Constructor Summary
Constructors Constructor Description HDF5InternalErrorException()
Constructs anHDF5InternalErrorException
with no specified detail message.HDF5InternalErrorException(java.lang.String s)
Constructs anHDF5InternalErrorException
with the specified detail message. -
Method Summary
Methods inherited from class hdf.hdf5lib.exceptions.HDF5LibraryException
getMajorErrorNumber, getMinorError, getMinorErrorNumber, printStackTrace, printStackTrace
Methods inherited from class hdf.hdf5lib.exceptions.HDF5Exception
getMessage
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
HDF5InternalErrorException
public HDF5InternalErrorException()Constructs anHDF5InternalErrorException
with no specified detail message. -
HDF5InternalErrorException
public HDF5InternalErrorException(java.lang.String s)Constructs anHDF5InternalErrorException
with the specified detail message.- Parameters:
s
- the detail message.
-