deno.land / x / mongoose@6.7.5 / lib / error / disconnected.js

disconnected.js
نووسراو ببینە
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(id, fnName) { super('Connection ' + id + ' was disconnected when calling `' + fnName + '()`'); }}
Object.defineProperty(DisconnectedError.prototype, 'name', { value: 'DisconnectedError'});
/*! * exports */
module.exports = DisconnectedError;
mongoose

Version Info

Tagged at
a year ago