lib/browser/GraphBrowser/ParseError.java
author wenzelm
Tue, 29 Apr 2014 21:11:24 +0200
changeset 56793 d5ab6a8799ce
parent 13973 9170772bf420
permissions -rw-r--r--
more synchronized treatment of prover process, which might emit more messages before shutdown and requires manager to accept them;

package GraphBrowser;

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