throwing-module-1.js (99B)
1 "use strict"; 2 3 function throwingMethod() { 4 throw new Error("my-exception"); 5 } 6 7 throwingMethod();