Files
xen-orchestra/@xen-orchestra/xapi/_AggregateError.js
Julien Fontanet 8975073416 fix(xapi): add missing file
Introduced by b12c17947

Thanks @Danp2.
2022-06-22 00:07:32 +02:00

10 lines
184 B
JavaScript

'use strict'
// TODO: remove when Node >=15.0
module.exports = class AggregateError extends Error {
constructor(errors, message) {
super(message)
this.errors = errors
}
}