lib/browser/GraphBrowser/ParseError.java
author wenzelm
Thu, 04 Jun 2009 17:31:38 +0200
changeset 31427 5a07cc86675d
parent 13973 9170772bf420
permissions -rw-r--r--
reraise exceptions to preserve original position (ML system specific);

package GraphBrowser;

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