DEBSOURCES
Skip Quicknav
sources / nodejs / 20.19.2%2Bdfsg-1 / test / fixtures / debugger / exceptions.js
12345678910
let error = null; try { throw new Error('Caught'); } catch (e) { error = e; } if (error) { throw new Error('Uncaught'); }