Files
bug-em/node_modules/har-validator/lib/error.js
Talor Berthelson 889faf9c1c lol
2016-06-17 20:49:15 -04:00

11 lines
186 B
JavaScript

'use strict'
function ValidationError (errors) {
this.name = 'ValidationError'
this.errors = errors
}
ValidationError.prototype = Error.prototype
module.exports = ValidationError