mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]修改基础异常类
This commit is contained in:
parent
e79157de0c
commit
2c6df0afd2
@ -21,4 +21,20 @@ namespace WeChat\Exceptions;
|
|||||||
*/
|
*/
|
||||||
class InvalidArgumentException extends \InvalidArgumentException
|
class InvalidArgumentException extends \InvalidArgumentException
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
public $raw = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* InvalidArgumentException constructor.
|
||||||
|
* @param string $message
|
||||||
|
* @param integer $code
|
||||||
|
* @param array $raw
|
||||||
|
*/
|
||||||
|
public function __construct($message, $code, $raw = [])
|
||||||
|
{
|
||||||
|
parent::__construct($message, intval($code));
|
||||||
|
$this->raw = $raw;
|
||||||
|
}
|
||||||
}
|
}
|
@ -21,4 +21,20 @@ namespace WeChat\Exceptions;
|
|||||||
*/
|
*/
|
||||||
class InvalidDecryptException extends \Exception
|
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,10 +15,27 @@
|
|||||||
namespace WeChat\Exceptions;
|
namespace WeChat\Exceptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 接口请求返回异常
|
* 返回异常
|
||||||
* Class InvalidResponseException
|
* Class InvalidResponseException
|
||||||
* @package WeChat
|
* @package WeChat
|
||||||
*/
|
*/
|
||||||
class InvalidResponseException extends \Exception
|
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,4 +22,21 @@ namespace WeChat\Exceptions;
|
|||||||
class LocalCacheException extends \Exception
|
class LocalCacheException extends \Exception
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
public $raw = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LocalCacheException 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