lib/browser/GraphBrowser/ParseError.java
author wenzelm
Sat, 31 Aug 2013 12:53:39 +0200
changeset 53343 8dc406adbc75
parent 13973 9170772bf420
permissions -rw-r--r--
added common alternative for == (its ambiguity also avoids conflict with ==>); clarified (= )= [= ]= (like <= >=); removed * (too intrusive);

package GraphBrowser;

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