44 lines
941 B
JavaScript
44 lines
941 B
JavaScript
|
/*!
|
||
|
* Module dependencies.
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
const MongooseError = require('./');
|
||
|
|
||
|
/**
|
||
|
* The connection failed to reconnect and will never successfully reconnect to
|
||
|
* MongoDB without manual intervention.
|
||
|
*
|
||
|
* @param {String} type
|
||
|
* @param {String} value
|
||
|
* @inherits MongooseError
|
||
|
* @api private
|
||
|
*/
|
||
|
|
||
|
function DisconnectedError(connectionString) {
|
||
|
MongooseError.call(this, 'Ran out of retries trying to reconnect to "' +
|
||
|
connectionString + '". Try setting `server.reconnectTries` and ' +
|
||
|
'`server.reconnectInterval` to something higher.');
|
||
|
this.name = 'DisconnectedError';
|
||
|
if (Error.captureStackTrace) {
|
||
|
Error.captureStackTrace(this);
|
||
|
} else {
|
||
|
this.stack = new Error().stack;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*!
|
||
|
* Inherits from MongooseError.
|
||
|
*/
|
||
|
|
||
|
DisconnectedError.prototype = Object.create(MongooseError.prototype);
|
||
|
DisconnectedError.prototype.constructor = MongooseError;
|
||
|
|
||
|
|
||
|
/*!
|
||
|
* exports
|
||
|
*/
|
||
|
|
||
|
module.exports = DisconnectedError;
|