public class Doer { public static <V> V doIt(Object... args) throws Throwable { if(Math.random() > 0.5) { throw new UnknownError(); } return null; } }
public class Doer { public static <V> V doIt(Object... args) throws Throwable { if(Math.random() > 0.5) { throw new UnknownError(); } return null; } }