????
Current Path : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/mssql/lib/error/ |
Current File : C:/inetpub/vhost/binhdinhinvest.gdtvietnam.com/api/node_modules/mssql/lib/error/connection-error.js |
'use strict' const MSSQLError = require('./mssql-error') /** * Class ConnectionError. */ class ConnectionError extends MSSQLError { /** * Creates a new ConnectionError. * * @param {String} message Error message. * @param {String} [code] Error code. */ constructor (message, code) { super(message, code) this.name = 'ConnectionError' } } module.exports = ConnectionError