Files
setup-haskell/node_modules/har-validator/lib/error.js
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -07:00

18 lines
373 B
JavaScript

function HARError (errors) {
var message = 'validation failed'
this.name = 'HARError'
this.message = message
this.errors = errors
if (typeof Error.captureStackTrace === 'function') {
Error.captureStackTrace(this, this.constructor)
} else {
this.stack = (new Error(message)).stack
}
}
HARError.prototype = Error.prototype
module.exports = HARError