ItemNotFoundException.php
TLDR
This file contains the ItemNotFoundException
class, which is a subclass of the RuntimeException
class.
Classes
ItemNotFoundException
This class is a subclass of the RuntimeException
class. It represents an exception that is thrown when an item is not found.
<?php
namespace Illuminate\Support;
use RuntimeException;
class ItemNotFoundException extends RuntimeException
{
}