mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
12 lines
218 B
PHP
12 lines
218 B
PHP
<?php
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Psr\Container;
|
|
|
|
use Throwable;
|
|
|
|
/**
|
|
* Base interface representing a generic exception in a container.
|
|
*/
|
|
interface ContainerExceptionInterface extends Throwable
|
|
{
|
|
}
|