mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-28 03:09:16 +08:00
19 lines
711 B
PHP
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);
|
|
}
|
|
}
|