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.
30 lines
523 B
30 lines
523 B
'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;
|
|
|