HTMLify
disconnected.js
Views: 6 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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; |