Initial commit

This commit is contained in:
Arnaud Nelissen
2021-07-16 10:18:13 +02:00
commit 3af7ddab06
5894 changed files with 590836 additions and 0 deletions

34
node_modules/mongoose/lib/error/disconnected.js generated vendored Normal file
View File

@@ -0,0 +1,34 @@
/*!
* 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;