Syllabus/themes/piratecare/node_modules/browserslist/error.js

13 lines
300 B
JavaScript
Raw Normal View History

2020-03-05 04:10:52 +00: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