host-not-found-error.js 340 B

123456789101112131415
  1. 'use strict';
  2. const ConnectionError = require('./../connection-error');
  3. /**
  4. * Thrown when a connection to a database has a hostname that was not found
  5. */
  6. class HostNotFoundError extends ConnectionError {
  7. constructor(parent) {
  8. super(parent);
  9. this.name = 'SequelizeHostNotFoundError';
  10. }
  11. }
  12. module.exports = HostNotFoundError;