NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/browserslist/error.js

13 lines
300 B
Java
Raw Normal View History

2023-09-14 14:47:11 +08:00
function BrowserslistError (message) {
this.name = 'BrowserslistError'
this.message = message
this.browserslist = true
if (Error.captureStackTrace) {
Error.captureStackTrace(this, BrowserslistError)
}
}
BrowserslistError.prototype = Error.prototype
module.exports = BrowserslistError