Bones/node_modules/har-validator/lib/error.js

11 lines
186 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
'use strict'
function ValidationError (errors) {
this.name = 'ValidationError'
this.errors = errors
}
ValidationError.prototype = Error.prototype
module.exports = ValidationError