blob: fc08a87218550cfbd5c723545f0208d2acbefa6a [file] [log] [blame]
'use strict'
function ValidationError (errors) {
this.name = 'ValidationError'
this.errors = errors
}
ValidationError.prototype = Error.prototype
module.exports = ValidationError