connection-timed-out-error.js 334 B

123456789101112131415
  1. 'use strict';
  2. const ConnectionError = require('./../connection-error');
  3. /**
  4. * Thrown when a connection to a database times out
  5. */
  6. class ConnectionTimedOutError extends ConnectionError {
  7. constructor(parent) {
  8. super(parent);
  9. this.name = 'SequelizeConnectionTimedOutError';
  10. }
  11. }
  12. module.exports = ConnectionTimedOutError;