lib/browser/GraphBrowser/ParseError.java
author bulwahn
Tue, 27 Oct 2009 09:03:56 +0100
changeset 33256 b350516cb1f9
parent 13973 9170772bf420
permissions -rw-r--r--
adding a prototype of a counter-example generator based on the predicate compiler to HOL/ex

package GraphBrowser;

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