fc08a87218550cfbd5c723545f0208d2acbefa6a
[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