File "ModuleExceptionInterface.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/vendor/dhii/module-interface/src/Exception/ModuleExceptionInterface.php
File size: 316 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Dhii\Modular\Module\Exception;
use 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
{
}