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

30 lines
901 B
PHP

<?php
declare (strict_types=1);
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Container\Exception;
use Exception;
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerExceptionInterface;
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
use Throwable;
/**
* Basic implementation of container exception.
*
* @package Dhii\Di
*/
class ContainerException extends Exception implements ContainerExceptionInterface
{
/**
* @var ContainerInterface|null
*/
protected $container;
/**
* @param string $message The exception message.
* @param int $code The exception code.
* @param Throwable|null $previous The inner exception, if any.
*/
public function __construct(string $message = "", int $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}