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.
		
		
		
		
		
			
		
			
				
					
					
						
							34 lines
						
					
					
						
							670 B
						
					
					
				
			
		
		
	
	
							34 lines
						
					
					
						
							670 B
						
					
					
				/*!
 | 
						|
 * Module dependencies.
 | 
						|
 */
 | 
						|
 | 
						|
'use strict';
 | 
						|
 | 
						|
const MongooseError = require('./');
 | 
						|
 | 
						|
 | 
						|
class StrictModeError extends MongooseError {
 | 
						|
  /**
 | 
						|
   * Strict mode error constructor
 | 
						|
   *
 | 
						|
   * @param {String} path
 | 
						|
   * @param {String} [msg]
 | 
						|
   * @param {Boolean} [immutable]
 | 
						|
   * @inherits MongooseError
 | 
						|
   * @api private
 | 
						|
   */
 | 
						|
  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;
 |