You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TimeoutException.java 148B

12345678910
  1. package coordination;
  2. public class TimeoutException extends Exception {
  3. long time;
  4. TimeoutException(long _time) {
  5. time = _time;
  6. }
  7. }