Searched refs:SomeUncheckedException (Results 1 – 6 of 6) sorted by relevance
116 final SomeUncheckedException exception = new SomeUncheckedException(); in testException()129 } catch (SomeUncheckedException e) { in testException()140 throw new SomeUncheckedException(); in testExceptionAfterEndOfData()146 } catch (SomeUncheckedException expected) { in testExceptionAfterEndOfData()220 private static class SomeUncheckedException extends RuntimeException {} class in AbstractIteratorTest
46 throwIfUnchecked(new SomeUncheckedException()); in testThrowIfUnchecked_Unchecked()48 } catch (SomeUncheckedException expected) { in testThrowIfUnchecked_Unchecked()103 } catch (SomeUncheckedException expected) { in testPropagateIfPossible_NoneDeclared_UncheckedThrown()170 } catch (SomeUncheckedException expected) { in testPropagateIfPossible_OneDeclared_UncheckedThrown()262 } catch (SomeUncheckedException expected) { in testPropagateIfPossible_TwoDeclared_UncheckedThrown()334 Throwables.propagateIfPossible(null, SomeCheckedException.class, SomeUncheckedException.class); in testPropageIfPossible_TwoDeclared_null()373 } catch (SomeUncheckedException expected) { in testPropagate_NoneDeclared_UncheckedThrown()424 throwIfInstanceOf(new SomeUncheckedException(), SomeCheckedException.class); in testThrowIfInstanceOf_Unchecked()511 } catch (SomeUncheckedException expected) { in testPropagateIfInstanceOf_UncheckedThrown()588 private static class SomeUncheckedException extends RuntimeException {} class in ThrowablesTest[all …]
218 final SomeUncheckedException exception = new SomeUncheckedException(); in testException()231 } catch (SomeUncheckedException e) { in testException()242 throw new SomeUncheckedException(); in testExceptionAfterEndOfData()248 } catch (SomeUncheckedException expected) { in testExceptionAfterEndOfData()309 private static class SomeUncheckedException extends RuntimeException {} class in AbstractIteratorTest