@@ -59,6 +59,7 @@ void OnFatalError(const char* location, const char* message);
5959 V (ERR_INVALID_ADDRESS , Error) \
6060 V (ERR_INVALID_ARG_VALUE , TypeError) \
6161 V (ERR_OSSL_EVP_INVALID_DIGEST , Error) \
62+ V (ERR_ILLEGAL_CONSTRUCTOR , Error) \
6263 V (ERR_INVALID_ARG_TYPE , TypeError) \
6364 V (ERR_INVALID_MODULE , Error) \
6465 V (ERR_INVALID_THIS , TypeError) \
@@ -71,6 +72,10 @@ void OnFatalError(const char* location, const char* message);
7172 V (ERR_MISSING_PLATFORM_FOR_WORKER , Error) \
7273 V (ERR_NON_CONTEXT_AWARE_DISABLED , Error) \
7374 V (ERR_OUT_OF_RANGE , RangeError) \
75+ V (ERR_QUIC_ENDPOINT_INITIAL_PACKET_FAILURE , Error) \
76+ V (ERR_QUIC_ENDPOINT_SEND_FAILURE , Error) \
77+ V (ERR_QUIC_FAILURE_SETTING_SNI_CONTEXT , Error) \
78+ V (ERR_QUIC_INTERNAL_ERROR , Error) \
7479 V (ERR_SCRIPT_EXECUTION_INTERRUPTED , Error) \
7580 V (ERR_SCRIPT_EXECUTION_TIMEOUT , Error) \
7681 V (ERR_STRING_TOO_LONG , Error) \
@@ -144,12 +149,18 @@ ERRORS_WITH_CODE(V)
144149 V (ERR_DLOPEN_FAILED , " DLOpen failed" ) \
145150 V (ERR_EXECUTION_ENVIRONMENT_NOT_AVAILABLE , \
146151 " Context not associated with Node.js environment" ) \
152+ V (ERR_ILLEGAL_CONSTRUCTOR , " Illegal constructor" ) \
147153 V (ERR_INVALID_ADDRESS , " Invalid socket address" ) \
148154 V (ERR_INVALID_MODULE , " No such module" ) \
149155 V (ERR_INVALID_THIS , " Value of \" this\" is the wrong type" ) \
150156 V (ERR_INVALID_TRANSFER_OBJECT , " Found invalid object in transferList" ) \
151157 V (ERR_MEMORY_ALLOCATION_FAILED , " Failed to allocate memory" ) \
152158 V (ERR_OSSL_EVP_INVALID_DIGEST , " Invalid digest used" ) \
159+ V (ERR_QUIC_ENDPOINT_INITIAL_PACKET_FAILURE , \
160+ " Failure processing initial packet" ) \
161+ V (ERR_QUIC_ENDPOINT_SEND_FAILURE , " Failure to send packet" ) \
162+ V (ERR_QUIC_FAILURE_SETTING_SNI_CONTEXT , " Failure setting SNI context" ) \
163+ V (ERR_QUIC_INTERNAL_ERROR , " Internal error: %s" ) \
153164 V (ERR_MESSAGE_TARGET_CONTEXT_UNAVAILABLE , \
154165 " A message object could not be deserialized successfully in the target " \
155166 " vm.Context" ) \
0 commit comments