lib/browser/GraphBrowser/ParseError.java
author blanchet
Fri, 24 Feb 2012 11:23:34 +0100
changeset 46642 37a055f37224
parent 13973 9170772bf420
permissions -rw-r--r--
general solution to the arity bug that occasionally plagues Sledgehammer -- short story, lots of things go kaputt when a polymorphic symbol's arity in the translation is higher than the arity of the fully polymorphic HOL constant

package GraphBrowser;

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