NeXusJavaBindings
1
Main Page
Packages
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Macros
Pages
bindings
java
ncsa
hdf
hdflib
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
26
public
class
HDFNotImplementedException
extends
HDFJavaException
{
27
28
String msg;
29
30
public
HDFNotImplementedException
() {
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
}
Generated by
1.8.1.1