Files
ZangShiQi/app/exception/BaseException.php
2026-04-04 17:27:12 +08:00

11 lines
123 B
PHP
Executable File

<?php
declare (strict_types=1);
namespace app\exception;
class BaseException extends \RuntimeException
{
}
?>