src/DI/Exception/NotFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Anax\DI\Exception;

use Psr\Container\NotFoundExceptionInterface;

/**
 * Exception when service is not found in DI.
 */
class NotFoundException extends \Exception implements NotFoundExceptionInterface
{

}