Initial import from local backup (Documents-Playground/pakerpale)
This commit is contained in:
16
node_modules/sequelize/lib/errors/connection/connection-timed-out-error.js
generated
vendored
Normal file
16
node_modules/sequelize/lib/errors/connection/connection-timed-out-error.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
'use strict';
|
||||
|
||||
const ConnectionError = require('./../connection-error');
|
||||
|
||||
/**
|
||||
* Thrown when a connection to a database times out
|
||||
*/
|
||||
class ConnectionTimedOutError extends ConnectionError {
|
||||
constructor(parent) {
|
||||
super(parent);
|
||||
this.name = 'SequelizeConnectionTimedOutError';
|
||||
Error.captureStackTrace(this, this.constructor);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = ConnectionTimedOutError;
|
||||
Reference in New Issue
Block a user