EntryNotFoundException.php
TLDR
This file defines the EntryNotFoundException
class, which is an exception that is thrown when an entry is not found in the container.
Classes
EntryNotFoundException
The EntryNotFoundException
class extends the Exception
class and implements the NotFoundExceptionInterface
. It represents an exception that is thrown when an entry is not found in the container.
<?php
namespace Illuminate\Container;
use Exception;
use Psr\Container\NotFoundExceptionInterface;
class EntryNotFoundException extends Exception implements NotFoundExceptionInterface
{
//
}