lib/browser/GraphBrowser/ParseError.java
author blanchet
Tue, 22 Mar 2011 19:04:32 +0100
changeset 42064 f4e53c8630c0
parent 13973 9170772bf420
permissions -rw-r--r--
added first-order TPTP version of Nitpick to Isabelle, so that its sources stay in sync with Isabelle and it is easier to install new versions for SystemOnTPTP and CASC -- the tool is called "isabelle nitrox" but is deliberately omitted from the tool list unless the component is explicitly enabled, to avoid clutter
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13973
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     1
package GraphBrowser;
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     2
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     3
class ParseError extends Exception {
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     4
	public ParseError(String s) { super(s); }
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     5
}