Skip to content

Commit

Permalink
Fixed #51 Made catch more broad
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmorell committed Jul 29, 2022
1 parent 212fa4e commit de71662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Factories/RollbarHandlerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function __construct(ContainerInterface $container)
$serializer = $container->get('serializer');
return \json_decode($serializer->serialize($user, 'json'), true, 512, JSON_THROW_ON_ERROR);
}
} catch (\Exception $exception) {
} catch (\Throwable $exception) {
// Ignore
}
};
Expand Down

0 comments on commit de71662

Please sign in to comment.