12345678910111213141516171819202122232425 |
- <?php
- namespace app\common\library\payment;
- class PaymentException extends \Exception {
- private $raw;
- public function __construct($message = "", $code = 0, $data=[]){
- parent::__construct($message, $code,null);
- $this->raw = $data;
- }
- public function getRaw(){
- return $this->raw;
- }
- }
|