lib/browser/GraphBrowser/ParseError.java
author huffman
Thu, 23 Jun 2005 21:27:23 +0200
changeset 16552 0774e9bcdb6c
parent 13973 9170772bf420
permissions -rw-r--r--
New features: permissive option for fixrec to skip proofs of equations; side conditions for fixrec equations (for definedness); fixpat theorem names apply to entire group of theorems; improved error messages

package GraphBrowser;

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