woocommerce-paypal-payments/lib/packages/Dhii/Container/Exception/NotFoundException.php

24 lines
678 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 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);
}
}