lib/browser/GraphBrowser/ParseError.java
author wenzelm
Sun, 31 May 2009 16:41:52 +0200
changeset 31319 6974449ddea9
parent 13973 9170772bf420
permissions -rw-r--r--
no longer open PolyML -- to avoid surprises within the global name space; recovered some important PolyML bindings (NB: print and makestring cannot be rebound without loosing infinite overloading);

package GraphBrowser;

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