0 follower

Final Class Yiisoft\Queue\Provider\QueueNotFoundException

InheritanceYiisoft\Queue\Provider\QueueNotFoundException » LogicException
ImplementsYiisoft\Queue\Provider\QueueProviderException

Thrown when the queue is not found.

Method Details

Hide inherited methods

__construct() public method

public mixed __construct ( string|\BackedEnum $name, integer $code 0, ?\Throwable $previous null )
$name string|\BackedEnum
$code integer
$previous ?\Throwable

                public function __construct(string|BackedEnum $name, int $code = 0, ?Throwable $previous = null)
{
    parent::__construct(
        sprintf('Queue with name "%s" not found.', StringNormalizer::normalize($name)),
        $code,
        $previous,
    );
}