node/deps/node-inspect/examples/exceptions.js

11 lines
129 B
JavaScript

let error = null;
try {
throw new Error('Caught');
} catch (e) {
error = e;
}
if (error) {
throw new Error('Uncaught');
}