17 lines
381 B
PHP
17 lines
381 B
PHP
<?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);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|