Lines Matching defs:exception
248 // construct the exception details from the message object. Otherwise
251 v8::Local<v8::Value> exception = result;
253 exception);
256 message, exception, m_objectGroup, &exceptionDetails);
288 // exception and does not need to be added in REPL mode, otherwise it would
427 if (mirror.exception) {
429 mirror.exception->buildRemoteObject(context, wrapMode, &remoteObject);
432 mirror.exception->v8Value(),
775 v8::Local<v8::Value> exception,
778 if (exception.IsEmpty()) return Response::Success();
781 wrapObject(exception, objectGroup,
782 exception->IsNativeError() ? WrapMode::kNoPreview
795 v8::Local<v8::Value> exception = tryCatch.Exception();
796 return createExceptionDetails(message, exception, objectGroup, result);
800 v8::Local<v8::Message> message, v8::Local<v8::Value> exception,
810 .setText(exception.IsEmpty() ? messageText : String16("Uncaught"))
835 addExceptionToDetails(exception, exceptionDetails.get(), objectGroup);
860 v8::Local<v8::Value> exception = tryCatch.Exception();
862 m_context->context(), tryCatch.Message(), exception);
864 wrapObject(exception, objectGroup,
865 exception->IsNativeError() ? WrapMode::kNoPreview
869 // We send exception in result for compatibility reasons, even though it's
870 // accessible through exceptionDetails.exception.