2020-06-21 13:23:22 +08:00
|
|
|
<?php
|
2020-11-29 09:29:14 +08:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-06-21 13:23:22 +08:00
|
|
|
/**
|
|
|
|
* @filename WechatResponseException.php
|
|
|
|
* @createdAt 2020/6/21
|
|
|
|
* @project https://github.com/yanwenwu/catch-admin
|
|
|
|
* @document http://doc.catchadmin.com
|
|
|
|
* @author JaguarJack <njphper@gmail.com>
|
|
|
|
* @copyright By CatchAdmin
|
|
|
|
* @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
|
2020-06-21 13:23:43 +08:00
|
|
|
*/
|
|
|
|
namespace catcher\exceptions;
|
|
|
|
|
|
|
|
use catcher\Code;
|
|
|
|
|
|
|
|
class WechatResponseException extends CatchException
|
|
|
|
{
|
|
|
|
protected $code = Code::WECHAT_RESPONSE_ERROR;
|
|
|
|
}
|