Searched refs:callableException (Results 1 – 2 of 2) sorted by relevance
1176 Exception callableException = new Exception(); in testLoadCheckedException() local1178 cache.get(new Object(), throwing(callableException)); in testLoadCheckedException()1181 assertThat(expected).hasCauseThat().isSameInstanceAs(callableException); in testLoadCheckedException()1250 Exception callableException = new InterruptedException(); in testLoadInterruptedException() local1252 cache.get(new Object(), throwing(callableException)); in testLoadInterruptedException()1255 assertThat(expected).hasCauseThat().isSameInstanceAs(callableException); in testLoadInterruptedException()1526 Exception callableException = new RuntimeException(); in testLoadUncheckedException() local1528 cache.get(new Object(), throwing(callableException)); in testLoadUncheckedException()1531 assertThat(expected).hasCauseThat().isSameInstanceAs(callableException); in testLoadUncheckedException()