Lines Matching refs:error
51 console.error(err);
84 console.error(`JSON.parse() failed for: ${jsonPayload}`);
171 reject(message.error);
357 this._logger.error(`[err] child process crashed, signal ${signal}`);
414 req.on('error', reject);
499 }, (error) => {
501 throw error;
505 function timeoutPromise(error, timeoutMs) {
509 const timeout = setTimeout(() => reject(error), timeoutMs);
522 // if that happens within the `timeoutMs` timespan, or rejects with `error` as
524 function fires(promise, error, timeoutMs) {
525 const timeout = timeoutPromise(error, timeoutMs);