lib/browser/GraphBrowser/ParseError.java
author paulson <lp15@cam.ac.uk>
Fri, 07 Mar 2014 15:52:56 +0000
changeset 55970 6d123f0ae358
parent 13973 9170772bf420
permissions -rw-r--r--
Some new proofs. Tidying up, esp to remove "apply rule".

package GraphBrowser;

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