Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/main
/
.
/
test
/
fixtures
/
debugger
/
exceptions.js
blob: f57d48a48dffc8c332c6767875323346d2a8572f [
file
] [
edit
]
let error
=
null
;
try
{
throw
new
Error
(
'Caught'
);
}
catch
(
e
)
{
error
=
e
;
}
if
(
error
)
{
throw
new
Error
(
'Uncaught'
);
}