The class Throwable does not exist. Is this class maybe located in a folder that is not analyzed, or in a newer version of your dependencies than listed in your composer.lock/composer.json?
Loading history...
32
$failedListeners[] = [$listener, $t];
33
} catch (Exception $e) {
34
$failedListeners[] = [$listener, $e];
35
}
36
37
if ($event->isPropagationStopped()) {
38
break;
39
}
40
}
41
42
if (!empty($failedListeners)) {
43
throw new AggregateRootEventException($eventName, $event, $failedListeners);