Beispiel #1
0
 private void uglyjoglhack() throws InterruptedException {
   try {
     display();
   } catch (RuntimeException e) {
     InterruptedException ie = Utils.hascause(e, InterruptedException.class);
     if (ie != null) throw (ie);
     else throw (e);
   }
 }