invalid-connection-error.js 377 B

123456789101112131415
  1. 'use strict';
  2. const ConnectionError = require('./../connection-error');
  3. /**
  4. * Thrown when a connection to a database has invalid values for any of the connection parameters
  5. */
  6. class InvalidConnectionError extends ConnectionError {
  7. constructor(parent) {
  8. super(parent);
  9. this.name = 'SequelizeInvalidConnectionError';
  10. }
  11. }
  12. module.exports = InvalidConnectionError;