import { ConnectionError } from '../connection-error'; /** * Thrown when a connection to a database has a hostname that was not found */ export class HostNotFoundError extends ConnectionError { constructor(cause: Error) { super(cause); this.name = 'SequelizeHostNotFoundError'; } }