Home | History | Annotate | Download | only in concurrent

Lines Matching refs:exceptionClass

813         final Class<?> exceptionClass;
815 <T extends Throwable> RunnableShouldThrow(Class<T> exceptionClass) {
816 this.exceptionClass = exceptionClass;
822 threadShouldThrow(exceptionClass.getSimpleName());
824 if (! exceptionClass.isInstance(t))
833 final Class<?> exceptionClass;
835 <T extends Throwable> ThreadShouldThrow(Class<T> exceptionClass) {
836 this.exceptionClass = exceptionClass;
842 threadShouldThrow(exceptionClass.getSimpleName());
844 if (! exceptionClass.isInstance(t))