lib/browser/GraphBrowser/ParseError.java
author bulwahn
Thu, 27 Oct 2011 13:50:54 +0200
changeset 45272 5995ab88a00f
parent 13973 9170772bf420
permissions -rw-r--r--
respecting isabelle's programming style in the quotient package by simplifying quotdata_lookup function for data access

package GraphBrowser;

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