lib/browser/GraphBrowser/ParseError.java
author haftmann
Fri, 26 Nov 2010 12:03:17 +0100
changeset 40710 499aa989fbad
parent 13973 9170772bf420
permissions -rw-r--r--
globbing constant expressions use more idiomatic underscore rather than star; precised

package GraphBrowser;

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