lib/browser/GraphBrowser/ParseError.java
author blanchet
Sun, 01 May 2011 18:37:25 +0200
changeset 42576 a8a80a2a34be
parent 13973 9170772bf420
permissions -rw-r--r--
merge symbol declarations that are type-instances of each other -- useful for type system "Args true" with monomorphization turned off

package GraphBrowser;

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