deno.land / x / mongoose@6.7.5 / lib / error / eachAsyncMultiError.js

eachAsyncMultiError.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*! * Module dependencies. */
'use strict';
const MongooseError = require('./');

/** * If `eachAsync()` is called with `continueOnError: true`, there can be * multiple errors. This error class contains an `errors` property, which * contains an array of all errors that occurred in `eachAsync()`. * * @api private */
class EachAsyncMultiError extends MongooseError { /** * @param {String} connectionString */ constructor(errors) { let preview = errors.map(e => e.message).join(', '); if (preview.length > 50) { preview = preview.slice(0, 50) + '...'; } super(`eachAsync() finished with ${errors.length} errors: ${preview}`);
this.errors = errors; }}
Object.defineProperty(EachAsyncMultiError.prototype, 'name', { value: 'EachAsyncMultiError'});
/*! * exports */
module.exports = EachAsyncMultiError;
mongoose

Version Info

Tagged at
a year ago