UNPKG

sequelize-ibmi

Version:

Multi dialect ORM for Node.JS

16 lines (12 loc) 356 B
'use strict'; const ConnectionError = require('./../connection-error'); /** * Thrown when a connection to a database has a hostname that was not reachable */ class HostNotReachableError extends ConnectionError { constructor(parent) { super(parent); this.name = 'SequelizeHostNotReachableError'; } } module.exports = HostNotReachableError;