mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
13 lines
218 B
PHP
13 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
|
||
|
{
|
||
|
}
|