invalid-connection-error.js 430 B

12345678910111213141516
  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. Error.captureStackTrace(this, this.constructor);
  11. }
  12. }
  13. module.exports = InvalidConnectionError;