Further changes for the Use cases on the live site.
[yaffs-website] / node_modules / phantomjs-prebuilt / 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