Preview: EntityNotFoundException.php
Size: 469 B
//opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/illuminate/contracts/Queue/EntityNotFoundException.php
<?php
namespace RectorPrefix202411\Illuminate\Contracts\Queue;
use InvalidArgumentException;
class EntityNotFoundException extends InvalidArgumentException
{
/**
* Create a new exception instance.
*
* @param string $type
* @param mixed $id
* @return void
*/
public function __construct($type, $id)
{
$id = (string) $id;
parent::__construct("Queueable entity [{$type}] not found for ID [{$id}].");
}
}
Directory Contents
Dirs: 0 × Files: 14