本文介绍了自定义异常类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我可以在 JavaScript 中为用户定义的异常定义自定义类型吗?如果是这样,我该怎么做?
Can I define custom types for user-defined exceptions in JavaScript? If so, how would I do it?
推荐答案
来自 WebReference:
throw {
name: "System Error",
level: "Show Stopper",
message: "Error detected. Please contact the system administrator.",
htmlMessage: "Error detected. Please contact the <a href="mailto:[email protected]">system administrator</a>.",
toString: function(){return this.name + ": " + this.message;}
};
这篇关于自定义异常类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!