Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace DI;
6
 
7
use Psr\Container\NotFoundExceptionInterface;
8
 
9
/**
10
 * Exception thrown when a class or a value is not found in the container.
11
 */
12
class NotFoundException extends \Exception implements NotFoundExceptionInterface
13
{
14
}