summaryrefslogtreecommitdiff
path: root/deps/node-inspect/examples/exceptions.js
blob: f57d48a48dffc8c332c6767875323346d2a8572f (plain)
1
2
3
4
5
6
7
8
9
10
let error = null;
try {
  throw new Error('Caught');
} catch (e) {
  error = e;
}

if (error) {
  throw new Error('Uncaught');
}