7 lines
99 B
JavaScript
7 lines
99 B
JavaScript
"use strict";
|
|
|
|
function throwingMethod() {
|
|
throw new Error("my-exception");
|
|
}
|
|
|
|
throwingMethod();
|