1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/browserslist/error.js

13 lines
306 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +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