File: ThreeDException.java

package info (click to toggle)
gpsprune 10-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,220 kB
  • ctags: 3,013
  • sloc: java: 22,662; sh: 23; makefile: 16; python: 15
file content (17 lines) | stat: -rw-r--r-- 259 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package tim.prune.threedee;

/**
 * Class to hold Exceptions thrown by 3d routines
 */
public class ThreeDException extends Exception
{

	/**
	 * Constructor
	 * @param message error text
	 */
	public ThreeDException(String message)
	{
		super(message);
	}
}