1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
* If you do not have access to either file, you may request a copy from *
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
package hdf.hdf5lib.exceptions;
/**
* <p>
* The class HDF5Exception returns errors from the Java HDF5 Interface.
* <p>
* Two sub-classes of HDF5Exception are defined:
* <ol>
* <li>
* HDF5LibraryException -- errors raised the HDF5 library code
* <li>
* HDF5JavaException -- errors raised the HDF5 Java wrapper code
* </ol>
* <p>
* 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.
*
*/
public class HDF5Exception extends RuntimeException {
protected String detailMessage;
/**
* Constructs an <code>HDF5Exception</code> with no specified detail
* message.
*/
public HDF5Exception() {
super();
}
/**
* Constructs an <code>HDF5Exception</code> with the specified detail
* message.
*
* @param message
* the detail message.
*/
public HDF5Exception(String message) {
super();
detailMessage = message;
}
/**
* Returns the detail message of this exception
*
* @return the detail message or <code>null</code> if this object does not
* have a detail message.
*/
@Override
public String getMessage() {
return detailMessage;
}
}
|