Newer
Older
ez-indexation / app / node_modules / har-validator / lib / error.js
@kieffer kieffer on 7 Mar 2017 186 bytes v0.0.0
'use strict'

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

ValidationError.prototype = Error.prototype

module.exports = ValidationError