<?phpnamespaceIlluminate\Contracts\Queue;useInvalidArgumentException;classEntityNotFoundExceptionextendsInvalidArgumentException{/** * Create a new exception instance. * * @param string $type * @param mixed $id * @return void */publicfunction__construct($type,$id){$id=(string)$id;parent::__construct("Queueable entity [{$type}] not found for ID [{$id}].");}}