woocommerce-paypal-payments/lib/packages/Dhii/Container/Exception/NotFoundException.php
2026-03-04 09:37:06 +00:00

19 lines
711 B
PHP

<?php
declare (strict_types=1);
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Container\Exception;
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\NotFoundExceptionInterface;
use Throwable;
class NotFoundException extends \WooCommerce\PayPalCommerce\Vendor\Dhii\Container\Exception\ContainerException implements NotFoundExceptionInterface
{
/**
* @param string $message The error message.
* @param int $code The error code.
* @param Throwable|null $previous The inner error, if any.
*/
public function __construct(string $message = '', int $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}