更新
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user