File: HDFNotImplementedException.java

package info (click to toggle)
nexus 4.4.3-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,876 kB
  • sloc: cpp: 34,928; ansic: 17,317; f90: 2,326; xml: 2,071; java: 1,953; fortran: 1,529; python: 766; makefile: 532; sh: 460; tcl: 173; lisp: 169
file content (41 lines) | stat: -rw-r--r-- 1,499 bytes parent folder | download | duplicates (7)
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
/****************************************************************************
 * NCSA HDF                                                                 *
 * 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/COPYING file.                                                        *
 *                                                                          *
 ****************************************************************************/

package ncsa.hdf.hdflib;

/**
 *  <p>
 *  HDFNotImplementedException indicates a function that is part
 *  of the HDF API, but which cannot or will not be implemented
 *  for Java.
 *  <p>
 *  For instance, C routines which take Unix FILE objects
 *  as parameters are not appropriate for the Java interface
 *  and will not be implemented.  These routines will raise
 *  an HDFNotImplementedException.
 */

public class HDFNotImplementedException  extends HDFJavaException {

	String msg;

	public HDFNotImplementedException() {
		HDFerror = 0;
	}

	public HDFNotImplementedException(String s) {
		msg = "HDFJavaException: HDF function not implmented (yet): "+s;
	}

	public String getMessage() {
		return msg;
	}
}