lib/browser/GraphBrowser/ParseError.java
author huffman
Sun, 07 Mar 2010 13:34:53 -0800
changeset 35640 9617aeca7147
parent 13973 9170772bf420
permissions -rw-r--r--
fix bug that occurred with 'domain_isomorphism foo = foo * tr * tr'

package GraphBrowser;

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