Package hdf.hdf5lib.exceptions
Class HDF5Exception
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
hdf.hdf5lib.exceptions.HDF5Exception
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
HDF5JavaException
,HDF5LibraryException
The class HDF5Exception returns errors from the Java HDF5 Interface.
Two sub-classes of HDF5Exception are defined:
- HDF5LibraryException -- errors raised the HDF5 library code
- HDF5JavaException -- errors raised the HDF5 Java wrapper code
These exceptions are sub-classed to represent specific error conditions, as needed. In particular, HDF5LibraryException has a sub-class for each major error code returned by the HDF5 library.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs anHDF5Exception
with no specified detail message.HDF5Exception
(String message) Constructs anHDF5Exception
with the specified detail message. -
Method Summary
Modifier and TypeMethodDescriptionReturns the detail message of this exceptionMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
detailMessage
-
-
Constructor Details
-
HDF5Exception
public HDF5Exception()Constructs anHDF5Exception
with no specified detail message. -
HDF5Exception
Constructs anHDF5Exception
with the specified detail message.- Parameters:
message
- the detail message.
-
-
Method Details
-
getMessage
Returns the detail message of this exception- Overrides:
getMessage
in classThrowable
- Returns:
- the detail message or
null
if this object does not have a detail message.
-