lib/browser/GraphBrowser/ParseError.java
author boehmes
Tue, 07 Dec 2010 14:54:31 +0100
changeset 41061 492f8fd35fc0
parent 13973 9170772bf420
permissions -rw-r--r--
centralized handling of built-in types and constants for bitvectors

package GraphBrowser;

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