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