Searched refs:throwableClass (Results 1 – 5 of 5) sorted by relevance
133 PsiClass throwableClass = throwableType.resolve(); in testIsInheritor() local134 Assert.assertNotNull(throwableClass); in testIsInheritor()145 Assert.assertTrue(smaliClass.isInheritor(throwableClass, true)); in testIsInheritor()149 Assert.assertTrue(smaliClass.isInheritorDeep(throwableClass, null)); in testIsInheritor()153 Assert.assertFalse(smaliClass.isInheritor(throwableClass, false)); in testIsInheritor()
23 Class<?> throwableClass = throwable.getClass(); in isValidException() local25 if (exception.isAssignableFrom(throwableClass)) { in isValidException()
965 …public static <T extends Throwable> void assertThrows(Class<T> throwableClass, ThrowingRunnable ru… in assertThrows() argument966 expectThrows(throwableClass, runnable); in assertThrows()981 …public static <T extends Throwable> T expectThrows(Class<T> throwableClass, ThrowingRunnable runna… in expectThrows() argument985 if (throwableClass.isInstance(t)) { in expectThrows()986 return throwableClass.cast(t); in expectThrows()989 throwableClass.getSimpleName(), t.getClass().getSimpleName()); in expectThrows()995 throwableClass.getSimpleName()); in expectThrows()
358 Class<?> throwableClass = throwable.getClass(); in isValidThrowable() local360 if (exception.isAssignableFrom(throwableClass)) in isValidThrowable()
244 ClassTypeImpl throwableClass = (ClassTypeImpl)list.get(0); in stop() local246 !throwableClass.isAssignableFrom(throwable)) { in stop()