lib/browser/GraphBrowser/ParseError.java
author berghofe
Sat, 10 Mar 2007 16:25:57 +0100
changeset 22432 1d00d26fee0d
parent 13973 9170772bf420
permissions -rw-r--r--
Renamed INF to INFM to avoid clash with INF operator defined in FixedPoint theory.

package GraphBrowser;

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