|
1
|
<?php |
|
2
|
|
|
3
|
declare (strict_types=1); |
|
4
|
namespace Syde\Vendor\Worldline\Inpsyde\WorldlineForWoocommerce\Core\Exception; |
|
5
|
|
|
6
|
use Throwable; |
|
7
|
/** |
|
8
|
* This is the most general exception interface for this project.
|
|
9
|
*/ |
|
10
|
interface WorldlineExceptionInterface extends Throwable |
|
11
|
{ |
|
12
|
} |
|
13
|
|