NotFoundException.php
491 Bytes
<?php
/**
* An exception used to signal no binding was found for container ID.
*
* @package lucatume\DI52
*
* @license GPL-3.0
* Modified by learndash on 06-June-2023 using Strauss.
* @see https://github.com/BrianHenryIE/strauss
*/
namespace StellarWP\Learndash\lucatume\DI52;
use Psr\Container\NotFoundExceptionInterface;
/**
* Class NotFoundException
*
* @package lucatume\DI52
*/
class NotFoundException extends ContainerException implements NotFoundExceptionInterface
{
}