lib/browser/GraphBrowser/ParseError.java
author haftmann
Sun, 29 May 2016 14:43:18 +0200
changeset 63175 d191892b1c23
parent 13973 9170772bf420
permissions -rw-r--r--
explicit check that abstract constructors cannot be part of official interface

package GraphBrowser;

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