|
123456789101112131415161718192021222324252627282930313233343536 |
- 'use strict';
-
- /*!
- * Module dependencies.
- */
-
- const MongooseError = require('./');
-
- /**
- * Version Error constructor.
- *
- * @inherits MongooseError
- * @api private
- */
-
- function VersionError(doc, currentVersion, modifiedPaths) {
- const modifiedPathsStr = modifiedPaths.join(', ');
- MongooseError.call(this, 'No matching document found for id "' + doc._id +
- '" version ' + currentVersion + ' modifiedPaths "' + modifiedPathsStr + '"');
- this.name = 'VersionError';
- this.version = currentVersion;
- this.modifiedPaths = modifiedPaths;
- }
-
- /*!
- * Inherits from MongooseError.
- */
-
- VersionError.prototype = Object.create(MongooseError.prototype);
- VersionError.prototype.constructor = MongooseError;
-
- /*!
- * exports
- */
-
- module.exports = VersionError;
|