51 lines
1.0 KiB
JavaScript
51 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
/*!
|
|
* Module dependencies.
|
|
*/
|
|
|
|
const MongooseError = require('./');
|
|
const util = require('util');
|
|
|
|
/*!
|
|
* OverwriteModel Error constructor.
|
|
*
|
|
* @inherits MongooseError
|
|
*/
|
|
|
|
function DocumentNotFoundError(query) {
|
|
let msg;
|
|
const messages = MongooseError.messages;
|
|
if (messages.DocumentNotFoundError != null) {
|
|
msg = typeof messages.DocumentNotFoundError === 'function' ?
|
|
messages.DocumentNotFoundError(query) :
|
|
messages.DocumentNotFoundError;
|
|
} else {
|
|
msg = 'No document found for query "' + util.inspect(query) + '"';
|
|
}
|
|
|
|
MongooseError.call(this, msg);
|
|
|
|
this.name = 'DocumentNotFoundError';
|
|
if (Error.captureStackTrace) {
|
|
Error.captureStackTrace(this);
|
|
} else {
|
|
this.stack = new Error().stack;
|
|
}
|
|
|
|
this.query = query;
|
|
}
|
|
|
|
/*!
|
|
* Inherits from MongooseError.
|
|
*/
|
|
|
|
DocumentNotFoundError.prototype = Object.create(MongooseError.prototype);
|
|
DocumentNotFoundError.prototype.constructor = MongooseError;
|
|
|
|
/*!
|
|
* exports
|
|
*/
|
|
|
|
module.exports = DocumentNotFoundError;
|