Final Class Yiisoft\Queue\Provider\QueueNotFoundException
| Inheritance | Yiisoft\Queue\Provider\QueueNotFoundException » LogicException |
|---|---|
| Implements | Yiisoft\Queue\Provider\QueueProviderException |
Thrown when the queue is not found.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Yiisoft\Queue\Provider\QueueNotFoundException |
Method Details
| 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,
);
}
Signup or Login in order to comment.