1'use strict' 2 3function ValidationError (errors) { 4 this.name = 'ValidationError' 5 this.errors = errors 6} 7 8ValidationError.prototype = Error.prototype 9 10module.exports = ValidationError 11 12