Home
last modified time | relevance | path

Searched refs:tryException (Results 1 – 1 of 1) sorted by relevance

/external/guava/guava-tests/test/com/google/common/io/
DCloserTest.java182 IOException tryException = new IOException(); in testCloseExceptionsSuppressed_whenExceptionThrownFromTryBlock() local
191 throw tryException; in testCloseExceptionsSuppressed_whenExceptionThrownFromTryBlock()
198 assertSame(tryException, expected); in testCloseExceptionsSuppressed_whenExceptionThrownFromTryBlock()
205 new Suppression(c2, tryException, c2Exception), in testCloseExceptionsSuppressed_whenExceptionThrownFromTryBlock()
206 new Suppression(c1, tryException, c1Exception)); in testCloseExceptionsSuppressed_whenExceptionThrownFromTryBlock()
239 RuntimeException tryException = new RuntimeException(); in testRuntimeExceptions() local
248 throw tryException; in testRuntimeExceptions()
255 assertSame(tryException, expected); in testRuntimeExceptions()
262 new Suppression(c2, tryException, c2Exception), in testRuntimeExceptions()
263 new Suppression(c1, tryException, c1Exception)); in testRuntimeExceptions()