mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]修改基础异常类
This commit is contained in:
parent
43041eb988
commit
b9dfb8665f
@ -15,11 +15,10 @@
|
||||
namespace WeChat\Exceptions;
|
||||
|
||||
/**
|
||||
* 参数异常
|
||||
* 接口参数异常
|
||||
* Class InvalidArgumentException
|
||||
* @package WeChat
|
||||
*/
|
||||
class InvalidArgumentException extends \InvalidArgumentException
|
||||
{
|
||||
|
||||
}
|
@ -15,27 +15,10 @@
|
||||
namespace WeChat\Exceptions;
|
||||
|
||||
/**
|
||||
* 返回异常
|
||||
* 加密解密异常
|
||||
* Class InvalidResponseException
|
||||
* @package WeChat
|
||||
*/
|
||||
class InvalidDecryptException extends \Exception
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
public $raw = [];
|
||||
|
||||
/**
|
||||
* InvalidDecryptException constructor.
|
||||
* @param string $message
|
||||
* @param integer $code
|
||||
* @param array $raw
|
||||
*/
|
||||
public function __construct($message, $code, $raw = [])
|
||||
{
|
||||
parent::__construct($message, intval($code));
|
||||
$this->raw = $raw;
|
||||
}
|
||||
|
||||
}
|
@ -15,27 +15,10 @@
|
||||
namespace WeChat\Exceptions;
|
||||
|
||||
/**
|
||||
* 返回异常
|
||||
* 接口请求返回异常
|
||||
* Class InvalidResponseException
|
||||
* @package WeChat
|
||||
*/
|
||||
class InvalidResponseException extends \Exception
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
public $raw = [];
|
||||
|
||||
/**
|
||||
* InvalidResponseException constructor.
|
||||
* @param string $message
|
||||
* @param integer $code
|
||||
* @param array $raw
|
||||
*/
|
||||
public function __construct($message, $code, $raw = [])
|
||||
{
|
||||
parent::__construct($message, intval($code));
|
||||
$this->raw = $raw;
|
||||
}
|
||||
|
||||
}
|
@ -22,21 +22,4 @@ namespace WeChat\Exceptions;
|
||||
class LocalCacheException extends \Exception
|
||||
{
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
public $raw = [];
|
||||
|
||||
/**
|
||||
* InvalidResponseException constructor.
|
||||
* @param string $message
|
||||
* @param integer $code
|
||||
* @param array $raw
|
||||
*/
|
||||
public function __construct($message, $code, $raw = [])
|
||||
{
|
||||
parent::__construct($message, intval($code));
|
||||
$this->raw = $raw;
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user