/**************************************************************************** * 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_BTREE */ public class HDF5BtreeException extends HDF5LibraryException { private static final long serialVersionUID = 1L; /** * Constructs an HDF5BtreeException with the specified detail message. * * @param majorErrorNumber The major error number of the HDF5 library. * @param majorErrorMessage The error message for the major error number of the HDF5 library. * @param minorErrorNumber The minor error number of the HDF5 library. * @param minorErrorMessage The error message for the minor error number of the HDF5 library. */ public HDF5BtreeException(final int majorErrorNumber, final String majorErrorMessage, final int minorErrorNumber, final String minorErrorMessage) { super(majorErrorNumber, majorErrorMessage, minorErrorNumber, minorErrorMessage); } }