Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / har-validator / lib / error.js
1 'use strict'
2
3 function ValidationError (errors) {
4   this.name = 'ValidationError'
5   this.errors = errors
6 }
7
8 ValidationError.prototype = Error.prototype
9
10 module.exports = ValidationError