Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-06-13 03:13:14 +0300
committerDanielle Adams <adamzdanielle@gmail.com>2021-06-21 18:08:06 +0300
commit631856ea32052e0024255e908127e8eaf0bf3b38 (patch)
tree8072a829e456f36e61016c98cd1b4d8a5429fb05 /lib
parent7f225a05eefa6908890b0f09deae175ad3841bc5 (diff)
errors: add ERR_DEBUGGER_ERROR
PR-URL: https://github.com/nodejs/node/pull/39024 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jan Krems <jan.krems@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/internal/errors.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/internal/errors.js b/lib/internal/errors.js
index a226b2d6898..a32895a9488 100644
--- a/lib/internal/errors.js
+++ b/lib/internal/errors.js
@@ -890,6 +890,7 @@ E('ERR_CRYPTO_SCRYPT_INVALID_PARAMETER', 'Invalid scrypt parameter', Error);
E('ERR_CRYPTO_SCRYPT_NOT_SUPPORTED', 'Scrypt algorithm not supported', Error);
// Switch to TypeError. The current implementation does not seem right.
E('ERR_CRYPTO_SIGN_KEY_REQUIRED', 'No key provided to sign', Error);
+E('ERR_DEBUGGER_ERROR', '%s', Error);
E('ERR_DIR_CLOSED', 'Directory handle was closed', Error);
E('ERR_DIR_CONCURRENT_OPERATION',
'Cannot do synchronous work on directory handle with concurrent ' +