lib/browser/GraphBrowser/ParseError.java
author wenzelm
Fri, 25 Sep 2015 23:39:08 +0200
changeset 61269 64a5bce1f498
parent 13973 9170772bf420
permissions -rw-r--r--
documentation for "Semantic subtype definitions"; misc tuning and simplification;

package GraphBrowser;

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