12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace WeChat\Exceptions;
- class InvalidArgumentException extends \InvalidArgumentException
- {
-
- public $raw = [];
-
- public function __construct($message, $code = 0, $raw = [])
- {
- parent::__construct($message, intval($code));
- $this->raw = $raw;
- }
- }
|