Searched refs:MultiError (Results 1 – 2 of 2) sorted by relevance
23 VError.MultiError = MultiError;325 return (new MultiError(errors));333 if (err instanceof MultiError) {380 function MultiError(errors) class391 mod_util.inherits(MultiError, VError);392 MultiError.prototype.name = 'MultiError';394 MultiError.prototype.errors = function me_errors()
27 * **MultiError**, which is just an Error that encapsulates one or more other348 * more than 1 element, returns a MultiError referencing the whole list358 Convenience function for iterating an error that may itself be a MultiError.360 In all cases, `err` must be an Error. If `err` is a MultiError, then `func` is361 invoked as `func(errorN)` for each of the underlying errors of the MultiError.366 that may be encapsulated with a MultiError -- but may not be.480 # Reference: MultiError482 MultiError is an Error class that represents a group of Errors. This is used490 new MultiError(error_list)495 The cause of the MultiError is the first error provided. None of the other[all …]