Lines Matching defs:exception

95   if (sourceline.find("node-do-not-add-exception-line") != std::string::npos) {
99 // If source maps have been enabled, the exception line will instead be
306 // it's a fatal exception, also print it out from here.
350 * Report the exception to the inspector, then print it to stderr.
456 *message ? message.ToStringView() : "<toString() threw exception>");
477 "(Use `%s --trace-uncaught ...` to show where the exception "
591 Local<v8::Value> exception = Exception();
596 message = Exception::CreateMessage(env_->isolate(), exception);
597 ReportFatalException(env_, exception, message, enhance);
1002 Local<Value> exception = args[0];
1003 Local<Message> message = Exception::CreateMessage(isolate, exception);
1006 env, exception, message, EnhanceFatalException::kEnhance);
1010 errors::TriggerUncaughtException(isolate, exception, message, from_promise);
1052 Local<Value> exception = try_catch.Exception();
1054 if (!exception->IsObject()) return;
1056 Local<Object> err_obj = exception.As<Object>();
1060 AppendExceptionLine(env, exception, try_catch.Message(), CONTEXTIFY_ERROR);
1099 // This means that the exception happens before Environment is assigned
1118 // If the exception happens before process._fatalException is attached
1130 // We do not expect the global uncaught exception itself to throw any more
1134 // Explicitly disable verbose exception reporting -
1155 // The global uncaught exception handler returns true if the user handles it
1160 // similar to how the worker global uncaught exception handler handles it.
1165 // Now we are certain that the exception is fatal.
1169 // If the global uncaught exception handler sets process.exitCode,