npmtest-auto-install (v0.0.1)

Code coverage report for node-npmtest-auto-install/auto-install/node_modules/har-validator/lib/error.js

Statements: 60% (3 / 5)      Branches: 100% (0 / 0)      Functions: 0% (0 / 1)      Lines: 60% (3 / 5)      Ignored: none     

All files » node-npmtest-auto-install/auto-install/node_modules/har-validator/lib/ » error.js
1 2 3 4 5 6 7 8 9 10 11 12    1         1   1    
'use strict'
 
function ValidationError (errors) {
  this.name = 'ValidationError'
  this.errors = errors
}
 
ValidationError.prototype = Error.prototype
 
module.exports = ValidationError