import { ConnectionError } from '../connection-error'; /** * Thrown when a connection to a database times out */ export class ConnectionTimedOutError extends ConnectionError { constructor(cause: Error) { super(cause); this.name = 'SequelizeConnectionTimedOutError'; } }