lib/browser/GraphBrowser/ParseError.java
author wenzelm
Sun, 12 Sep 2010 21:24:23 +0200
changeset 39291 4b632bb847a8
parent 13973 9170772bf420
permissions -rw-r--r--
Type_Infer.infer_types: plain error instead of kernel exception TYPE;

package GraphBrowser;

class ParseError extends Exception {
	public ParseError(String s) { super(s); }
}