NeXusJavaBindings  1
 All Classes Namespaces Files Functions Variables Typedefs Macros Pages
HDFNotImplementedException.java
Go to the documentation of this file.
1 /****************************************************************************
2  * NCSA HDF *
3  * National Comptational Science Alliance *
4  * University of Illinois at Urbana-Champaign *
5  * 605 E. Springfield, Champaign IL 61820 *
6  * *
7  * For conditions of distribution and use, see the accompanying *
8  * hdf/COPYING file. *
9  * *
10  ****************************************************************************/
11 
12 package ncsa.hdf.hdflib;
13 
27 
28  String msg;
29 
31  HDFerror = 0;
32  }
33 
34  public HDFNotImplementedException(String s) {
35  msg = "HDFJavaException: HDF function not implmented (yet): "+s;
36  }
37 
38  public String getMessage() {
39  return msg;
40  }
41 }