UNPKG

261 BTypeScriptView Raw
1import ConnectionError from '../connection-error';
2/**
3 * Thrown when a connection to a database has a hostname that was not found
4 */
5declare class HostNotFoundError extends ConnectionError {
6 constructor(parent: Error);
7}
8export default HostNotFoundError;