dotfiles/.vscode/extensions/saviorisdead.RustyCode-0.18.0/node_modules/har-validator/lib/error.js

11 lines
186 B
JavaScript
Raw Normal View History

2016-09-11 09:29:13 +01:00
'use strict'
function ValidationError (errors) {
this.name = 'ValidationError'
this.errors = errors
}
ValidationError.prototype = Error.prototype
module.exports = ValidationError