Lines Matching refs:exception
84 * - when an exception is thrown.
237 Throwable* exception = self->GetException(nullptr);
238 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), exception);
339 // Return the pending exception.
614 Object* exception = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data));
615 if (UNLIKELY(exception == NULL)) {
616 ThrowNullPointerException(NULL, "throw with null exception");
617 } else if (do_assignability_check && !exception->GetClass()->IsThrowableClass()) {
623 exception->GetClass()->GetDescriptor(&temp));
625 self->SetException(shadow_frame.GetCurrentLocationForThrow(), exception->AsThrowable());