Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
81146 views
1
'use strict'
2
3
function ValidationError (errors) {
4
this.name = 'ValidationError'
5
this.errors = errors
6
}
7
8
ValidationError.prototype = Error.prototype
9
10
module.exports = ValidationError
11
12