In CEF there is the OnUncaughtException callback that can handle v8 exceptions globally.
Or you can use pure javascript to catch errors using window.onerror event:
window.onerror = function (errorMessage, url, lineNumber) {}
Though, this one won't provide you stack trace. Also CEF v8 stack trace is lost when called from within onerror.
Best regards,
Czarek