lib/browser/GraphBrowser/ParseError.java
author bulwahn
Sat, 09 Jul 2011 19:28:33 +0200
changeset 43733 a6ca7b83612f
parent 13973 9170772bf420
permissions -rw-r--r--
adding code equations to execute floor and ceiling on rational and real numbers

package GraphBrowser;

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