Files
2026-04-28 15:13:50 +02:00

13 lines
274 B
PHP

<?php
declare(strict_types=1);
namespace WCPay\Vendor\League\Container\Exception;
use WCPay\Vendor\Psr\Container\NotFoundExceptionInterface;
use InvalidArgumentException;
class NotFoundException extends InvalidArgumentException implements NotFoundExceptionInterface
{
}