Files
pancake/system/vendor/illuminate/contracts/Queue/EntityNotFoundException.php
Tim Bendt 6b9ef7ca55 first
2025-11-25 00:16:35 -05:00

23 lines
452 B
PHP
Executable File

<?php
namespace 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}].");
}
}