1 package org.prevayler.foundation;2 3 /** Cool things that are often needed.4 */5 public class Cool {6 7 public static void wait(Object object) {8 try {9 object.wait();10 } catch (InterruptedException e) {11 e.printStackTrace();12 throw new RuntimeException ("Unexpected InterruptedException.");13 }14 }15 16 }17