Вход Регистрация
Файл: system/vendor/illuminate/contracts/Queue/EntityNotFoundException.php
Строк: 29
<?php

namespace IlluminateContractsQueue;

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}].");
    }
}
Онлайн: 3
Реклама