From 4ff613b10ca46e029b657572e09070682440c947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=9D=9C=E7=82=9C?= Date: Mon, 16 Jun 2025 02:23:51 +0000 Subject: [PATCH] update js_api_module/uri/src/js_uri.ts. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 赵杜炜 --- js_api_module/uri/src/js_uri.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js_api_module/uri/src/js_uri.ts b/js_api_module/uri/src/js_uri.ts index 68dc2ba7..819335f2 100644 --- a/js_api_module/uri/src/js_uri.ts +++ b/js_api_module/uri/src/js_uri.ts @@ -78,7 +78,7 @@ class URI { static createFromParts(scheme: string, ssp: string, fragment: string): URI { if (scheme === null || typeof scheme !== 'string') { - throw new BusinessError(`Parameter error. The type of ${scheme} must be string`); + throw new BusinessError(`Parameter error. The type of ${scheme} must be string `); } if (ssp === null || typeof ssp !== 'string') { throw new BusinessError(`Parameter error. The type of ${ssp} must be string`); -- Gitee