mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
19 lines
252 B
JavaScript
19 lines
252 B
JavaScript
function uncaughtException() {
|
|
throw "unreachable"
|
|
}
|
|
|
|
function caughtError() {
|
|
try {
|
|
throw new Error("error");
|
|
} catch (e) {
|
|
debugger;
|
|
}
|
|
}
|
|
|
|
function caughtException() {
|
|
try {
|
|
throw "reachable";
|
|
} catch (e) {
|
|
debugger;
|
|
}
|
|
}
|