From d57e2abd71805bae4833e3cae9f57cb3309845df Mon Sep 17 00:00:00 2001 From: alexandercerutti Date: Sun, 23 Sep 2018 11:59:18 +0200 Subject: [PATCH] Added Invalid_cert_path error message --- messages.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/messages.js b/messages.js index 25b7ba6..342a0a9 100644 --- a/messages.js +++ b/messages.js @@ -5,7 +5,8 @@ let errors = { REQS_NOT_MET: "The options passed to Pass constructor does not meet the requirements. Refer to the documentation to compile them correctly.", MODEL_NOT_STRING: "A string model name must be provided in order to continue.", MODEL_NOT_FOUND: "Model %s not found. Provide a valid one to continue", - INVALID_CERTS: "Invalid certificates got loaded. Please provide WWDR certificates and developer signer certificate and key (with passphrase)." + INVALID_CERTS: "Invalid certificate(s) loaded: %s. Please provide valid WWDR certificates and developer signer certificate and key (with passphrase). Refer to docs to obtain them.", + INVALID_CERT_PATH: "Invalid certificate loaded. %s does not exist." }; module.exports = errors;