You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
523 B
31 lines
523 B
4 years ago
|
'use strict';
|
||
|
|
||
|
/*!
|
||
|
* Module dependencies.
|
||
|
*/
|
||
|
|
||
|
const MongooseError = require('./');
|
||
|
|
||
|
class ParallelSaveError extends MongooseError {
|
||
|
/**
|
||
|
* ParallelSave Error constructor.
|
||
|
*
|
||
|
* @param {Document} doc
|
||
|
* @api private
|
||
|
*/
|
||
|
constructor(doc) {
|
||
|
const msg = 'Can\'t save() the same doc multiple times in parallel. Document: ';
|
||
|
super(msg + doc._id);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Object.defineProperty(ParallelSaveError.prototype, 'name', {
|
||
|
value: 'ParallelSaveError'
|
||
|
});
|
||
|
|
||
|
/*!
|
||
|
* exports
|
||
|
*/
|
||
|
|
||
|
module.exports = ParallelSaveError;
|