lib/browser/GraphBrowser/ParseError.java
author wenzelm
Wed, 15 Apr 2009 15:27:13 +0200
changeset 30896 ec3f33437fe3
parent 13973 9170772bf420
permissions -rw-r--r--
more generic error message, which also covers more fundamental failure;

package GraphBrowser;

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