9 lines
147 B
PHP
9 lines
147 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace WpifyWooDeps\DASPRiD\Enum\Exception;
|
|
|
|
use Throwable;
|
|
interface ExceptionInterface extends Throwable
|
|
{
|
|
}
|