Your IP : 216.73.216.17


Current Path : /etc/kibana/node_modules/har-validator/lib/
Upload File :
Current File : //etc/kibana/node_modules/har-validator/lib/error.js

function HARError (errors) {
  var message = 'validation failed'

  this.name = 'HARError'
  this.message = message
  this.errors = errors

  if (typeof Error.captureStackTrace === 'function') {
    Error.captureStackTrace(this, this.constructor)
  } else {
    this.stack = (new Error(message)).stack
  }
}

HARError.prototype = Error.prototype

module.exports = HARError