📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
22 lines
432 B
PHP
22 lines
432 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Queue;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
class EntityNotFoundException extends InvalidArgumentException
|
|
{
|
|
/**
|
|
* Create a new exception instance.
|
|
*
|
|
* @param string $type
|
|
* @param mixed $id
|
|
*/
|
|
public function __construct($type, $id)
|
|
{
|
|
$id = (string) $id;
|
|
|
|
parent::__construct("Queueable entity [{$type}] not found for ID [{$id}].");
|
|
}
|
|
}
|