throw RuntimeException if wait was interrupted
parent
7ebca1b039
commit
556217e7b3
|
@ -44,7 +44,7 @@ public final class DelayedViewersThread extends Thread {
|
|||
//wait for 100ms
|
||||
wait(100);
|
||||
} catch (final InterruptedException ex) {
|
||||
System.err.println("Interrupted : "+ex.getMessage());
|
||||
throw new RuntimeException(ex.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue