Lines Matching refs:caught
239 let caught = false;
266 // that these exceptions are caught, and thus would prevent it from
279 caught = this.emit('error', er);
289 // 1. There is a handler, caught = true
290 // 2. There is no handler, caught = false
291 // 3. It throws, caught = false
293 // If caught is false after this, then there's no need to exit()
295 caught = this.emit('error', er);
303 caught = process.domain._errorHandler(er2);
316 return caught;