From 2c6df0afd2046126825c6ca5ca96add2da9eef77 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 2 Feb 2018 19:55:03 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E5=BC=82=E5=B8=B8=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Exceptions/InvalidArgumentException.php | 16 ++++++++++++++++ WeChat/Exceptions/InvalidDecryptException.php | 16 ++++++++++++++++ .../Exceptions/InvalidResponseException.php | 19 ++++++++++++++++++- WeChat/Exceptions/LocalCacheException.php | 17 +++++++++++++++++ 4 files changed, 67 insertions(+), 1 deletion(-) diff --git a/WeChat/Exceptions/InvalidArgumentException.php b/WeChat/Exceptions/InvalidArgumentException.php index 295da76..44a7802 100644 --- a/WeChat/Exceptions/InvalidArgumentException.php +++ b/WeChat/Exceptions/InvalidArgumentException.php @@ -21,4 +21,20 @@ namespace WeChat\Exceptions; */ 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; + } } \ No newline at end of file diff --git a/WeChat/Exceptions/InvalidDecryptException.php b/WeChat/Exceptions/InvalidDecryptException.php index b178d77..986dbe3 100644 --- a/WeChat/Exceptions/InvalidDecryptException.php +++ b/WeChat/Exceptions/InvalidDecryptException.php @@ -21,4 +21,20 @@ namespace WeChat\Exceptions; */ 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; + } } \ No newline at end of file diff --git a/WeChat/Exceptions/InvalidResponseException.php b/WeChat/Exceptions/InvalidResponseException.php index c7fa741..d5a2c12 100644 --- a/WeChat/Exceptions/InvalidResponseException.php +++ b/WeChat/Exceptions/InvalidResponseException.php @@ -15,10 +15,27 @@ 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; + } + } \ No newline at end of file diff --git a/WeChat/Exceptions/LocalCacheException.php b/WeChat/Exceptions/LocalCacheException.php index 3e30df3..ce22934 100644 --- a/WeChat/Exceptions/LocalCacheException.php +++ b/WeChat/Exceptions/LocalCacheException.php @@ -22,4 +22,21 @@ namespace WeChat\Exceptions; 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; + } + } \ No newline at end of file