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