1. 自定义一个异常需要使用构造函数 Error()
var error1 = new Error("This is an unknown error.");
2. 抛出异常需要使用 throw 关键字
var error1 = new Error("This is an unknown error."); throw error1;
执行后就可以得到这样的效果:
原文地址:https://www.cnblogs.com/aisowe/p/11655006.html
时间: 2024-10-09 00:35:05