lib/browser/GraphBrowser/ParseError.java
author paulson
Wed, 19 Jul 2006 11:55:26 +0200
changeset 20153 6ff5d35749b0
parent 13973 9170772bf420
permissions -rw-r--r--
Fixed the bugs introduced by the last commit! Output is now *identical* to that produced by the old version, based on a-lists.
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
}