lib/browser/GraphBrowser/ParseError.java
author wenzelm
Fri, 14 Mar 2014 10:08:36 +0100
changeset 56140 ed92ce2ac88e
parent 13973 9170772bf420
permissions -rw-r--r--
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.); more thorough background_notes: distribute global notes to all contexts;
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
}