trisquel-icecat/icecat/devtools/shared/tests/xpcshell/throwing-module-2.js

8 lines
135 B
JavaScript

"use strict";
function throwingMethod() {
// eslint-disable-next-line no-throw-literal
throw "my-exception";
}
throwingMethod();