Lines Matching refs:exceptionClass
131 jclass exceptionClass = env->GetObjectClass(thrown); // Always succeeds in GetExceptionSummary() local
133 jstring className = (jstring)env->CallObjectMethod(exceptionClass, getName); in GetExceptionSummary()
137 env->DeleteLocalRef(exceptionClass); in GetExceptionSummary()
140 env->DeleteLocalRef(exceptionClass); in GetExceptionSummary()
141 exceptionClass = NULL; in GetExceptionSummary()
292 jclass exceptionClass = NULL; in ThrowException() local
303 exceptionClass = env->FindClass(className); in ThrowException()
304 if (exceptionClass == NULL) { in ThrowException()
311 jmethodID init = env->GetMethodID(exceptionClass, "<init>", ctorSig); in ThrowException()
318 jobject instance = env->NewObjectV(exceptionClass, init, args); in ThrowException()
337 if (exceptionClass != NULL) { in ThrowException()
338 env->DeleteLocalRef(exceptionClass); in ThrowException()