Welcome to mirror list, hosted at ThFree Co, Russian Federation.

error.js « src « har-validator « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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