lib/browser/GraphBrowser/ParseError.java
author paulson
Tue, 24 May 2005 10:23:24 +0200
changeset 16061 8a139c1557bf
parent 13973 9170772bf420
permissions -rw-r--r--
A new structure and reduced indentation

package GraphBrowser;

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