mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-05-02 05:02:40 +08:00
24 lines
678 B
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);
|
|
}
|
|
}
|