for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Spiral\Queue\Exception;
use Spiral\Queue\OptionsInterface;
final class RetryException extends StateException
{
public function __construct(
string $reason = '',
private ?OptionsInterface $options = null
) {
parent::__construct($reason);
}
public function getOptions(): ?OptionsInterface
return $this->options;