Git viewing holonet/common / bf853db1b818caac37856cf8b80e1e429fd13982 / src/di/DependencyNotFoundException.php


Filter

      <?php
/**
 * This file is part of the holonet common library
 * (c) Matthias Lantsch.
 *
 * Class file for the Dependency Injection DependencyNotFoundException class
 *
 * @license http://opensource.org/licenses/gpl-license.php  GNU Public License
 * @author  Matthias Lantsch <[email protected]>
 */

namespace holonet\common\di;

use RuntimeException;
use Psr\Container\NotFoundExceptionInterface;

/**
 * Dependency Injection not found exception conforming with PSR-11.
 */
class DependencyNotFoundException extends RuntimeException implements NotFoundExceptionInterface {
}