ICT30016-Assignment-3/node_modules/browserslist 2/error.js
dlawler489 a23de4f0dd .
2025-09-16 13:00:57 +10:00

12 lines
299 B
JavaScript

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