loom-dependency-injection-c.../src/Exception/NotFoundException.php

18 lines
381 B
PHP
Raw Normal View History

<?php
namespace Loom\DependencyInjectionComponent\Exception;
use Psr\Container\NotFoundExceptionInterface;
class NotFoundException extends \Exception implements NotFoundExceptionInterface
{
public function __construct(string $message = 'Entry not found', int $code = 0, \Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}