From e6edd66c10632715326a3ef830c6808d7da069f6 Mon Sep 17 00:00:00 2001 From: Yaniv Friedensohn Date: Fri, 14 Jun 2019 13:17:40 +0300 Subject: src: add error codes to errors thrown in node_i18n.cc PR-URL: https://github.com/nodejs/node/pull/28221 Reviewed-By: James M Snell Reviewed-By: Rich Trott --- src/node_i18n.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/node_i18n.cc') diff --git a/src/node_i18n.cc b/src/node_i18n.cc index ad5c828392..162f5fda5d 100644 --- a/src/node_i18n.cc +++ b/src/node_i18n.cc @@ -655,7 +655,7 @@ static void ToUnicode(const FunctionCallbackInfo& args) { int32_t len = ToUnicode(&buf, *val, val.length()); if (len < 0) { - return env->ThrowError("Cannot convert name to Unicode"); + return THROW_ERR_INVALID_ARG_VALUE(env, "Cannot convert name to Unicode"); } args.GetReturnValue().Set( @@ -678,7 +678,7 @@ static void ToASCII(const FunctionCallbackInfo& args) { int32_t len = ToASCII(&buf, *val, val.length(), mode); if (len < 0) { - return env->ThrowError("Cannot convert name to ASCII"); + return THROW_ERR_INVALID_ARG_VALUE(env, "Cannot convert name to ASCII"); } args.GetReturnValue().Set( -- cgit v1.2.3