aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ajde/examples/spacewar/coordination/TimeoutException.java
blob: 3bfddef577fb602747800008745383387e768b74 (plain)
1
2
3
4
5
6
7
8
9
10
package coordination;


public class TimeoutException extends Exception {
    long time;
    TimeoutException(long _time) {
	time = _time;
    }
}