lib/browser/GraphBrowser/ParseError.java
author haftmann
Tue, 07 Feb 2017 22:15:05 +0100
changeset 64997 067a6cca39f0
parent 13973 9170772bf420
permissions -rw-r--r--
dedicated computation preprocessing rules for nat, int implemented by target language literals

package GraphBrowser;

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