lib/browser/GraphBrowser/ParseError.java
author boehmes
Sun, 05 Jun 2011 15:00:17 +0200
changeset 43154 72e4753a6677
parent 13973 9170772bf420
permissions -rw-r--r--
made introduction of explicit application stable under removal of vacuous facts (which only lower the rank of constants but do not participate in the proof)
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
}