lib/browser/GraphBrowser/ParseError.java
author krauss
Tue, 06 Jun 2006 09:28:24 +0200
changeset 19782 48c4632e2c28
parent 13973 9170772bf420
permissions -rw-r--r--
HOL/Tools/function_package: imporoved handling of guards, added an example

package GraphBrowser;

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