Final Class Yiisoft\Queue\Message\Handler\HandlerNotFoundException
| Inheritance | Yiisoft\ |
|---|
Thrown when a handler for the given message type is not found.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Yiisoft\ |
Method Details
| public mixed __construct ( string $messageType, integer $code = 0, ?\ | ||
| $messageType | string | |
| $code | integer | |
| $previous | ?\ |
|
public function __construct(string $messageType, int $code = 0, ?Throwable $previous = null)
{
parent::__construct(
sprintf('Queue handler for message type "%s" does not exist.', $messageType),
$code,
$previous,
);
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.