Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Contracts
/
Queue
:
EntityNotFoundException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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}]."); } }