1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2  * Copyright by The HDF Group.                                               *
3  * Copyright by the Board of Trustees of the University of Illinois.         *
4  * All rights reserved.                                                      *
5  *                                                                           *
6  * This file is part of HDF5.  The full HDF5 copyright notice, including     *
7  * terms governing use, modification, and redistribution, is contained in    *
8  * the COPYING file, which can be found at the root of the source code       *
9  * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.  *
10  * If you do not have access to either file, you may request a copy from     *
11  * help@hdfgroup.org.                                                        *
12  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
13 
14 package hdf.hdf5lib.exceptions;
15 
16 /**
17  * The class HDF5LibraryException returns errors raised by the HDF5 library.
18  * <p>
19  * This sub-class represents HDF-5 major error code <b>H5E_STORAGE</b>
20  */
21 
22 public class HDF5DataStorageException extends HDF5LibraryException {
23     /**
24      * Constructs an <code>HDF5DataStorageExceptionn</code> with no specified
25      * detail message.
26      */
HDF5DataStorageException()27     public HDF5DataStorageException() {
28         super();
29     }
30 
31     /**
32      * Constructs an <code>HDF5DataStorageException</code> with the specified
33      * detail message.
34      *
35      * @param s
36      *            the detail message.
37      */
HDF5DataStorageException(String s)38     public HDF5DataStorageException(String s) {
39         super(s);
40     }
41 }
42