lib/browser/GraphBrowser/ParseError.java
author bulwahn
Tue, 05 Apr 2011 09:38:23 +0200
changeset 42230 594480d25aaa
parent 13973 9170772bf420
permissions -rw-r--r--
deriving bounded_forall instances in quickcheck_exhaustive

package GraphBrowser;

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