mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
11 lines
129 B
JavaScript
11 lines
129 B
JavaScript
|
let error = null;
|
||
|
try {
|
||
|
throw new Error('Caught');
|
||
|
} catch (e) {
|
||
|
error = e;
|
||
|
}
|
||
|
|
||
|
if (error) {
|
||
|
throw new Error('Uncaught');
|
||
|
}
|