Changeset View
Changeset View
Standalone View
Standalone View
externals/stripe-php/lib/Stripe/InvalidRequestError.php
| <?php | <?php | ||||
| class Stripe_InvalidRequestError extends Stripe_Error | class Stripe_InvalidRequestError extends Stripe_Error | ||||
| { | { | ||||
| public function __construct($message, $param, $http_status=null, $http_body=null, $json_body=null) | public function __construct($message, $param, $httpStatus=null, | ||||
| $httpBody=null, $jsonBody=null | |||||
| ) | |||||
| { | { | ||||
| parent::__construct($message, $http_status, $http_body, $json_body); | parent::__construct($message, $httpStatus, $httpBody, $jsonBody); | ||||
| $this->param = $param; | $this->param = $param; | ||||
| } | } | ||||
| } | } | ||||