From e4d4b3142f977f16bf6aa3736fcba5d5a32ee797 Mon Sep 17 00:00:00 2001 From: Saad Jutt Date: Fri, 8 Apr 2022 00:01:15 +0500 Subject: [PATCH] chore: updated error message --- src/types/errors/CertificateError.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/errors/CertificateError.ts b/src/types/errors/CertificateError.ts index ef08278..35f444d 100644 --- a/src/types/errors/CertificateError.ts +++ b/src/types/errors/CertificateError.ts @@ -4,7 +4,7 @@ const instructionsToFix = export class CertificateError extends Error { constructor(message: string) { super( - `Error: ${message}\nPlease visit below link to resolve this issue:\n- ${instructionsToFix}\n` + `Error: ${message}\nPlease visit the link below for further information on this issue:\n- ${instructionsToFix}\n` ) this.name = 'CertificateError' Object.setPrototypeOf(this, CertificateError.prototype)