Files
zyt/server/app/common/service/qywx/QywxPromotionContactApiException.php
2026-08-31 15:17:34 +08:00

17 lines
406 B
PHP

<?php
declare(strict_types=1);
namespace app\common\service\qywx;
use RuntimeException;
/** 不保存 Guzzle 原异常,避免请求 URL / token / welcome_code 进入日志。 */
class QywxPromotionContactApiException extends RuntimeException
{
public function __construct(string $message, int $code = 0, public bool $uncertain = false)
{
parent::__construct($message, $code);
}
}