--- jsr166/src/test/loops/TimeoutProducerConsumerLoops.java 2016/12/31 19:25:33 1.14 +++ jsr166/src/test/loops/TimeoutProducerConsumerLoops.java 2016/12/31 21:34:47 1.15 @@ -224,8 +224,8 @@ public class TimeoutProducerConsumerLoop static final class LTQasSQ extends LinkedTransferQueue { LTQasSQ() { super(); } public void put(T x) { - try { super.transfer(x); - } catch (InterruptedException ex) { throw new Error(); } + try { super.transfer(x); } + catch (InterruptedException ex) { throw new Error(ex); } } public boolean offer(T x, long timeout, TimeUnit unit) {