Channel.php 338 B

123456789101112131415
  1. <?php
  2. namespace Pingpp\Error;
  3. class Channel extends Base
  4. {
  5. public function __construct($message, $errcode, $param, $httpStatus=null,
  6. $httpBody=null, $jsonBody=null
  7. )
  8. {
  9. parent::__construct($message, $httpStatus, $httpBody, $jsonBody);
  10. $this->errcode = $errcode;
  11. $this->param = $param;
  12. }
  13. }