lib/browser/GraphBrowser/ParseError.java
author wenzelm
Wed, 13 Jan 2010 00:08:56 +0100
changeset 34885 6587c24ef6d8
parent 13973 9170772bf420
permissions -rw-r--r--
added SOLVED' -- a more direct version of THEN_ALL_NEW (K no_tac) -- strictly speaking it does not even depend on subgoal addressing, but it would be too confusing without it;

package GraphBrowser;

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