lib/browser/GraphBrowser/ParseError.java
author haftmann
Mon, 06 Jun 2016 21:28:46 +0200
changeset 63240 f82c0b803bda
parent 13973 9170772bf420
permissions -rw-r--r--
more correct exception handling

package GraphBrowser;

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