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
709 B
34 lines
709 B
/*!
|
|
* Module dependencies.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const MongooseError = require('./');
|
|
|
|
|
|
/**
|
|
* The connection failed to reconnect and will never successfully reconnect to
|
|
* MongoDB without manual intervention.
|
|
* @api private
|
|
*/
|
|
class DisconnectedError extends MongooseError {
|
|
/**
|
|
* @param {String} connectionString
|
|
*/
|
|
constructor(connectionString) {
|
|
super('Ran out of retries trying to reconnect to "' +
|
|
connectionString + '". Try setting `server.reconnectTries` and ' +
|
|
'`server.reconnectInterval` to something higher.');
|
|
}
|
|
}
|
|
|
|
Object.defineProperty(DisconnectedError.prototype, 'name', {
|
|
value: 'DisconnectedError'
|
|
});
|
|
|
|
/*!
|
|
* exports
|
|
*/
|
|
|
|
module.exports = DisconnectedError;
|
|
|