diff --git a/dosee-init.js b/dosee-init.js index 98b5e49..c969af8 100644 --- a/dosee-init.js +++ b/dosee-init.js @@ -158,9 +158,13 @@ error.textContent = errMsg error.appendChild(a) // console output - throw new Error( - `DOSee has aborted as it is missing the above dependencies.` - ) + try { + throw new Error( + `DOSee has aborted as it is missing the above dependencies.` + ) + } catch (err) { + console.error(err) + } } }) })()