lib/browser/GraphBrowser/ParseError.java
author blanchet
Mon, 26 Nov 2012 11:45:12 +0100
changeset 50218 d50119e69453
parent 13973 9170772bf420
permissions -rw-r--r--
distinguish declated tfrees from other tfrees -- only the later can be optimized away

package GraphBrowser;

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