*/
@Test
public void testHandleCauseUncheckedChecked() {
Exception ex = new Exception("Test");
try {
ConcurrentUtils.handleCauseUnchecked(new ExecutionException(ex));
fail("ConcurrentRuntimeException not thrown!");
} catch (ConcurrentRuntimeException crex) {
assertEquals("Wrong cause", ex, crex.getCause());
}
}