mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-28 03:09:16 +08:00
19 lines
384 B
PHP
19 lines
384 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\Exception;
|
|
|
|
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleAwareInterface;
|
|
use Throwable;
|
|
|
|
/**
|
|
* Represents an exception that is thrown in relation to a module.
|
|
*
|
|
* @since 0.2
|
|
*/
|
|
interface ModuleExceptionInterface extends
|
|
Throwable,
|
|
ModuleAwareInterface
|
|
{
|
|
}
|