12345678910111213141516171819202122232425262728293031 |
- 'use strict';
- /*!
- * Module dependencies.
- */
- const MongooseError = require('./mongooseError');
- class ParallelValidateError extends MongooseError {
- /**
- * ParallelValidate Error constructor.
- *
- * @param {Document} doc
- * @api private
- */
- constructor(doc) {
- const msg = 'Can\'t validate() the same doc multiple times in parallel. Document: ';
- super(msg + doc._id);
- }
- }
- Object.defineProperty(ParallelValidateError.prototype, 'name', {
- value: 'ParallelValidateError'
- });
- /*!
- * exports
- */
- module.exports = ParallelValidateError;
|