sequelize-ibmi
Version:
Multi dialect ORM for Node.JS
16 lines (12 loc) • 340 B
JavaScript
;
const ConnectionError = require('./../connection-error');
/**
* Thrown when a connection to a database has a hostname that was not found
*/
class HostNotFoundError extends ConnectionError {
constructor(parent) {
super(parent);
this.name = 'SequelizeHostNotFoundError';
}
}
module.exports = HostNotFoundError;