14 lines
285 B
PHP
14 lines
285 B
PHP
<?php
|
|
|
|
class Stripe_CardError extends Stripe_Error
|
|
{
|
|
public function __construct($message, $param, $code, $httpStatus,
|
|
$httpBody, $jsonBody
|
|
)
|
|
{
|
|
parent::__construct($message, $httpStatus, $httpBody, $jsonBody);
|
|
$this->param = $param;
|
|
$this->code = $code;
|
|
}
|
|
}
|