lib/browser/GraphBrowser/ParseError.java
author bulwahn
Thu, 12 Nov 2009 20:38:57 +0100
changeset 33649 854173fcd21c
parent 13973 9170772bf420
permissions -rw-r--r--
added a tabled implementation of the reflexive transitive closure

package GraphBrowser;

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