
ncsa.hdf.hdf5lib.exceptions.HDF5ObjectHeaderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hdf-java Show documentation
Show all versions of hdf-java Show documentation
APIs to access native hdf4 and hdf5 libraries.
The newest version!
/****************************************************************************
* NCSA HDF5 *
* National Comptational Science Alliance *
* University of Illinois at Urbana-Champaign *
* 605 E. Springfield, Champaign IL 61820 *
* *
* For conditions of distribution and use, see the accompanying *
* hdf-java/COPYING file. *
* *
****************************************************************************/
package ncsa.hdf.hdf5lib.exceptions;
/**
* The class HDF5LibraryException returns errors raised by the HDF5
* library.
*
* This sub-class represents HDF-5 major error code
* H5E_OHDR
*/
public class HDF5ObjectHeaderException extends HDF5LibraryException
{
/**
* Constructs an HDF5ObjectHeaderException
with
* no specified detail message.
*/
public HDF5ObjectHeaderException() {
super();
}
/**
* Constructs an HDF5ObjectHeaderException
with
* the specified detail message.
*
* @param s the detail message.
*/
public HDF5ObjectHeaderException(String s) {
super(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy