diff --git a/src/types/errors/CertificateError.ts b/src/types/errors/CertificateError.ts index 35f444d..f298c37 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 the link below for further information on this issue:\n- ${instructionsToFix}\n` + `${message}\nPlease visit the link below for further information on this issue:\n- ${instructionsToFix}\n` ) this.name = 'CertificateError' Object.setPrototypeOf(this, CertificateError.prototype)