| 1234567891011121314151617181920212223242526272829303132333435 |
- /*!
- * Module dependencies.
- */
- 'use strict';
- const MongooseError = require('./mongooseError');
- /**
- * Strict mode error constructor
- *
- * @param {String} path
- * @param {String} [msg]
- * @param {Boolean} [immutable]
- * @inherits MongooseError
- * @api private
- */
- class StrictModeError extends MongooseError {
- constructor(path, msg, immutable) {
- msg = msg || 'Field `' + path + '` is not in schema and strict ' +
- 'mode is set to throw.';
- super(msg);
- this.isImmutableError = !!immutable;
- this.path = path;
- }
- }
- Object.defineProperty(StrictModeError.prototype, 'name', {
- value: 'StrictModeError'
- });
- module.exports = StrictModeError;
|