lib/browser/GraphBrowser/ParseError.java
author blanchet
Mon, 08 Nov 2010 02:33:48 +0100
changeset 40419 718b44dbd74d
parent 13973 9170772bf420
permissions -rw-r--r--
make sure the SMT solver runs several iterations by lowering the timeout at each iteration -- yields better results in practice

package GraphBrowser;

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