Home | History | Annotate | Download | only in samples

Lines Matching full:try_catch

241     v8::TryCatch try_catch;
246 ReportException(&try_catch);
252 v8::TryCatch try_catch;
255 if (try_catch.HasCaught()) {
257 ReportException(&try_catch);
308 v8::TryCatch try_catch;
311 if (try_catch.HasCaught()) {
313 ReportException(&try_catch);
360 void ReportException(v8::TryCatch* try_catch) {
362 v8::String::Utf8Value exception(try_catch->Exception());
364 v8::Handle<v8::Message> message = try_catch->Message();