lib/browser/GraphBrowser/ParseError.java
author paulson <lp15@cam.ac.uk>
Thu, 02 May 2019 12:58:32 +0100
changeset 70228 2d5b122aa0ff
parent 13973 9170772bf420
permissions -rw-r--r--
De-applying and combining lemmas to make structured proofs

package GraphBrowser;

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