mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-26 03:08:40 +00:00
12 lines
138 B
PHP
12 lines
138 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Laminas\Escaper\Exception;
|
|
|
|
use Throwable;
|
|
|
|
interface ExceptionInterface extends Throwable
|
|
{
|
|
}
|