Lines Matching defs:exception
1412 // If the exception has been caught by the promise pipeline, we rethrow
1555 Local<Value> exception) {
1560 v8::Global<v8::Value>(isolate_, exception));
2745 // if there's a pending exception.
2759 v8::String::Utf8Value exception(isolate, exception_obj);
2760 const char* exception_string = ToCString(exception);
2763 // print the exception.
3244 v8::Local<Value> exception = data.GetValue();
3247 if (exception->IsObject()) {
3248 message = v8::Exception::CreateMessage(isolate, exception);
3250 if (!exception->IsNativeError() &&
3253 exception = v8::Exception::Error(
3255 message = Exception::CreateMessage(isolate, exception);
3259 isolate_data->AddUnhandledPromise(promise, message, exception);
3792 Local<Object> exception = try_catch.Exception().As<Object>();
3797 Local<Value> value = exception->Get(context, key).ToLocalChecked();