All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ncsa.hdf.hdf5lib.exceptions.HDF5FunctionArgumentException Maven / Gradle / Ivy

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_ARGS */ public class HDF5FunctionArgumentException extends HDF5LibraryException { /** * Constructs an HDF5FunctionArgumentException with no * specified detail message. */ public HDF5FunctionArgumentException() { super(); } /** * Constructs an HDF5FunctionArgumentException with the * specified detail message. * * @param s * the detail message. */ public HDF5FunctionArgumentException(String s) { super(s); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy