lib/browser/GraphBrowser/ParseError.java
author paulson
Wed, 01 Nov 2006 15:49:43 +0100
changeset 21135 07549f79d19c
parent 13973 9170772bf420
permissions -rw-r--r--
Numerous cosmetic changes. Use of ---> notation for types. Added rules for the introduction of the iff connective, but they are too prolific to be useful.

package GraphBrowser;

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