NotFoundException.php

PHP

Path: src/Exceptions/NotFoundException.php

<?php

namespace mini\Exceptions;

use Psr\Container\NotFoundExceptionInterface;

/**
 * Exception thrown when a requested service is not found in the container
 *
 * Indicates that no service has been registered for the requested identifier.
 */
class NotFoundException extends \Exception implements NotFoundExceptionInterface
{
}