lib/browser/GraphBrowser/ParseError.java
author wenzelm
Mon, 24 Oct 2016 15:00:13 +0200
changeset 64375 74a2af7c5145
parent 13973 9170772bf420
permissions -rw-r--r--
remove old target: it is on the classpath and may break scalac;

package GraphBrowser;

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