lib/browser/GraphBrowser/ParseError.java
author paulson <lp15@cam.ac.uk>
Sun, 19 Apr 2020 12:02:26 +0100
changeset 71769 4892ceb5b29a
parent 13973 9170772bf420
permissions -rw-r--r--
the rest of the applys

package GraphBrowser;

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