标签: javascript
我尝试使用-W VERBOSE
-W VERBOSE
这个简单的陈述
throw new Exception ("hello");
产生错误
variable Exception is undeclared
我认为Exception是标准的。 Closure是错误的,还是我应该在抛出之前以某种方式声明Exception? (我的代码在Firefox中运行良好。)
Exception
答案 0 :(得分:3)
你应该投掷Error而不是Exception:
Error
throw new Error('hello');
(throw new Exception()在我的Firefox中不起作用,不确定它为什么适合你)
throw new Exception()