diff --git a/src/drivers/beanstalk/Queue.php b/src/drivers/beanstalk/Queue.php index 65f3c5bc3..384347fa3 100644 --- a/src/drivers/beanstalk/Queue.php +++ b/src/drivers/beanstalk/Queue.php @@ -131,7 +131,7 @@ public function remove(int|string $id): bool try { $this->getPheanstalk()->delete(new JobId($id)); return true; - } catch (Exception) { + } catch (\Throwable) { return false; } }