summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/request/node_modules/har-validator/src/error.js
blob: fc08a87218550cfbd5c723545f0208d2acbefa6a (plain)
1
2
3
4
5
6
7
8
9
10
'use strict'

function ValidationError (errors) {
  this.name = 'ValidationError'
  this.errors = errors
}

ValidationError.prototype = Error.prototype

module.exports = ValidationError