kubernetes-handbook/node_modules/har-validator/lib/error.js

11 lines
186 B
JavaScript
Raw Normal View History

2021-04-13 00:24:28 +08:00
'use strict'
function ValidationError (errors) {
this.name = 'ValidationError'
this.errors = errors
}
ValidationError.prototype = Error.prototype
module.exports = ValidationError