ERR_INVALID_ARG_TYPE is the most common error used throughout the code base. This improves the error message by providing more details to the user and by indicating more precisely which values are allowed ones and which ones are not. It adds the actual input to the error message in case it's a primitive. If it's a class instance, it'll print the class name instead of "object" and "falsy" or similar entries are not named "type" anymore. PR-URL: https://github.com/nodejs/node/pull/29675 Reviewed-By: Rich Trott <rtrott@gmail.com>
24 lines
634 B
JavaScript
24 lines
634 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
common.expectsError(
|
|
() => process.setUncaughtExceptionCaptureCallback(42),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "fn" argument must be of type function or null. ' +
|
|
'Received type number (42)'
|
|
}
|
|
);
|
|
|
|
process.setUncaughtExceptionCaptureCallback(common.mustNotCall());
|
|
|
|
common.expectsError(
|
|
() => process.setUncaughtExceptionCaptureCallback(common.mustNotCall()),
|
|
{
|
|
code: 'ERR_UNCAUGHT_EXCEPTION_CAPTURE_ALREADY_SET',
|
|
type: Error,
|
|
message: /setupUncaughtExceptionCapture.*called while a capture callback/
|
|
}
|
|
);
|