From b093e7db72ef4e5c4e676a2685b077344ead6a4f Mon Sep 17 00:00:00 2001 From: Rami Moshe Date: Mon, 25 Sep 2017 12:07:30 +0300 Subject: [PATCH] lib/https: convert to using internal/errors --- lib/https.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/https.js b/lib/https.js index fb220872598315..ea3cf9cf275d27 100644 --- a/lib/https.js +++ b/lib/https.js @@ -30,6 +30,7 @@ const util = require('util'); const inherits = util.inherits; const debug = util.debuglog('https'); const { urlToOptions, searchParamsSymbol } = require('internal/url'); +const errors = require('internal/errors'); function Server(opts, requestListener) { if (!(this instanceof Server)) return new Server(opts, requestListener); @@ -226,7 +227,7 @@ exports.request = function request(options, cb) { if (typeof options === 'string') { options = url.parse(options); if (!options.hostname) { - throw new Error('Unable to determine the domain name'); + throw new errors.Error('ERR_INVALID_DOMAIN_NAME'); } } else if (options && options[searchParamsSymbol] && options[searchParamsSymbol][searchParamsSymbol]) {