|
|
@@ -33,7 +33,7 @@ class WhatFailureGroupHandler extends GroupHandler
|
|
|
foreach ($this->handlers as $handler) {
|
|
|
try {
|
|
|
$handler->handle($record);
|
|
|
- } catch (\Exception $e) {
|
|
|
+ } catch (\Throwable $e) {
|
|
|
// What failure?
|
|
|
}
|
|
|
}
|
|
|
@@ -49,7 +49,7 @@ class WhatFailureGroupHandler extends GroupHandler
|
|
|
foreach ($this->handlers as $handler) {
|
|
|
try {
|
|
|
$handler->handleBatch($records);
|
|
|
- } catch (\Exception $e) {
|
|
|
+ } catch (\Throwable $e) {
|
|
|
// What failure?
|
|
|
}
|
|
|
}
|