test_lgq/niucloud/core/exception/NoticeException.php
2024-01-24 17:36:08 +08:00

19 lines
318 B
PHP

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