mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-24 01:00:35 +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
|
|
{
|
|
}
|