lib/browser/GraphBrowser/ParseError.java
author boehmes
Thu, 05 Nov 2009 15:24:49 +0100
changeset 33446 153a27370a42
parent 13973 9170772bf420
permissions -rw-r--r--
handle let expressions inside terms by unfolding (instead of raising an exception), added examples to test this feature

package GraphBrowser;

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