Final Class Yiisoft\Queue\Provider\QueueNotFoundException
| Inheritance | Yiisoft\ |
|---|---|
| Implements | Yiisoft\ |
Thrown when the queue is not found.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Yiisoft\ |
Method Details
| public mixed __construct ( string|\ | ||
| $queueName | string|\ |
|
| $code | integer | |
| $previous | ?\ |
|
public function __construct(string|BackedEnum $queueName, int $code = 0, ?Throwable $previous = null)
{
parent::__construct(
sprintf('Queue "%s" not found.', StringNormalizer::normalize($queueName)),
$code,
$previous,
);
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.