wangchen147 295fb5d386 1.0.0
2024-04-03 15:26:01 +08:00

19 lines
316 B
PHP

<?php
namespace core\exception;
use RuntimeException;
use Throwable;
/**
* 插件错误异常处理类
*/
class HomeException extends RuntimeException
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}