lib/browser/GraphBrowser/ParseError.java
author bulwahn
Wed, 30 Mar 2011 11:32:51 +0200
changeset 42162 00899500c6ca
parent 13973 9170772bf420
permissions -rw-r--r--
moved TimeLimit.timeLimit closure to limit time of compilation and execution to avoid the strange, occasional occuring message Exception trace for exception - Interrupt -- probably due to race conditions of a fast execution within the TimeLimit.timelimit closure
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13973
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     1
package GraphBrowser;
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     2
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     3
class ParseError extends Exception {
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     4
	public ParseError(String s) { super(s); }
9170772bf420 fixed javac warning
kleing
parents:
diff changeset
     5
}